Created
October 18, 2021 14:58
-
-
Save KyMidd/c828a2e61f6402a5b68ce8311742e7b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data "aws_iam_policy_document" "example" { | |
| statement { | |
| sid = "1" | |
| actions = [ | |
| "s3:ListAllMyBuckets", | |
| "s3:GetBucketLocation", | |
| ] | |
| resources = [ | |
| "arn:aws:s3:::*", | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment