Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created October 18, 2021 14:58
Show Gist options
  • Select an option

  • Save KyMidd/c828a2e61f6402a5b68ce8311742e7b3 to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/c828a2e61f6402a5b68ce8311742e7b3 to your computer and use it in GitHub Desktop.
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