AWS Development Integration

Modified on Mon, 11 Dec 2023 at 12:25 AM

Prepare AWS IAM User for integration

Please refer to the official document for more detail.


Create Policy for integration

  1. Login to AWS and go to IAM
  2. Select Access management > Policies and click Create policy button
  3. Click on JSON tab and copy/paste the below and click Next
    {
    "Version": "2012-10-17",
    "Statement": [
    {
    "Effect": "Allow",
    "Action": [
    "iam:Get*",
    "iam:List*",
    "iam:AddUserToGroup",
    "iam:DeleteUser",
    "iam:CreateUser"
    ],
    "Resource": "*"
    }
    ]
    }
  4. Input an arbitrary policy Name and click on Create policy


Create IAM User with the policy


  1. Click on Users and click Create user button
  2. Input User name and click Next
  3. Select the created policy click Next
  4. Review and click on Create user
  5. Select the created user’s Security credentials tab and click on Create access key
  6. Select Third party service and click Next. Skip tag and complete creating access Key.


Integration with Josys

  1. Input Access Key ID and Secret Access Key
  2. Click Next to complete integration.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article