Versions Compared

Key

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

You have tried to access an archived page. Please go to the new https://root360.atlassian.net/wiki/spaces/KB to find more documents.


...

Table of Contents

General information

AWS Identity and Access Management (IAM) is an Amazon AWS service to administer personalized or application-specific users within an AWS account. Using these users it is possible to assign detailed access rights within an account. In addition, roles can be used to control access from other accounts (cross account access).

...

Login in the AWS Console via https://<account-number>.signin.aws.amazon.com/console/  -> My Account -> My AWS Console (opens on mouseover).

...

Media-sync (write/read to the defined bucket)

Code Block
languagexmllinenumberstrue
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "s3:ListAllMyBuckets",
      "Resource": "arn:aws:s3:::*"
    },
    {
      "Effect": "Allow",
      "Action": [
        "s3:ListBucket",
        "s3:GetBucketLocation"
      ],
      "Resource": "arn:aws:s3:::BUCKETNAME"
    },
    {
      "Effect": "Allow",
      "Action": [
        "s3:PutObject",
        "s3:GetObject",
        "s3:DeleteObject"
      ],
      "Resource": "arn:aws:s3:::BUCKETNAME/*"
    }
  ]
}   

...