Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Access the AWS security interfaces by clicking your account name in the top-right corner of the AWS screen and choose Security Credentials.
  2. In the Identity and Access Management console Policies screen, click Create Policy.
  3. Click the JSON tab, and replace the policy text with the following:

    Code Block
    languagejs
    titleSecurity Policy
    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Sid": "Stmt1403202294000",
          "Effect": "Allow",
          "Action": [
            "s3:ListAllMyBuckets"
          ],
          "Resource": [
            "arn:aws:s3:::*"
          ]
        },
    	{
           "Sid": "Stmt1403202783000",
           "Effect": "Allow",
           "Action": [
             "s3:*"
           ],
           "Resource": [
             "arn:aws:s3:::YourBucketName","arn:aws:s3:::YourBucketName/*"
           ]
         }
      ]
    }


  4. Ensure the policy text starts on line 1, and click Review Policy.
  5. Give the policy a name and click Create Policy.
  6. In the Identity and Access Management console User screen, click the Add User button and enter a user name.
  7. Choose Programmatic Access for the Access Type and click Next.
  8. Click Attach existing policies directly, then select the policy created in step 5.
  9. Click Next to provide any additional parameters, and continue moving through the creation screens until the Create User button displays.
  10. Click Create User.
  11. On success, be sure to copy the Access Key and Secret Access Key.  You WILL NOT be able to access these values again, and you need them to configure GlobalSync.