...
- One of the statements grants access to the
3fac-data-public
bucketthe demo assets buckets. - Replace
<my_default_S3_bucket>
with the name of your default S3 bucket. - To grant access to multiple buckets within your account, you can extend the resources list to accommodate the additional buckets.
...
Code Block |
---|
{ "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:ListBucket", "s3:DeleteObject", "s3:GetBucketLocation" ], "Resource": [ "arn:aws:s3:::<my_default_S3_bucket>", "arn:aws:s3:::<my_default_S3_bucket>/*" ] }, { "Sid": "VisualEditor1", "Effect": "Allow", "Action": [ "s3:GetObject", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::aws-saas-samples-prod", "arn:aws:s3:::3facaws-saas-datasamples-publicprod/*", "arn:aws:s3:::3facaws-data-publicsaas-datasets", "arn:aws:s3:::aws-saas-datasets/*", "arn:aws:s3:::3fac-data-public", "arn:aws:s3:::3fac-data-public/*" "arn:aws:s3:::trifacta-public-datasets", "arn:aws:s3:::trifacta-public-datasets/*" ] } ] } |
Update policy to accommodate SSE-KMS if necessary
...