Versions Compared

Key

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

...

Code Block
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "PermissionsforKudoAccount",
            "Effect": "Allow",
            "Principal": {
                "AWS": [
                    "arn:aws:iam::649336859113:root"
                ]
            },
            "Action": [
                "s3:PutObject",
                "s3:GetObject"
            ],
            "Resource": [
                "arn:aws:s3:::kudo-demo-content",
                "arn:aws:s3:::kudo-demo-content/*"
            ]
        }
    ]
}

We need to have an IAM policy to xenon EC2 roles to allow operations on the bucket

Code Block
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "PermissionsForCustomerContentBucket",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObject"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}