Skip to content

Instantly share code, notes, and snippets.

@MOZGIII
Created March 11, 2018 16:39
Show Gist options
  • Save MOZGIII/11167025f8e204ed500e1bb95f44e523 to your computer and use it in GitHub Desktop.
Save MOZGIII/11167025f8e204ed500e1bb95f44e523 to your computer and use it in GitHub Desktop.
Terraform S3 backend IAM policies
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "s3",
"Effect": "Allow",
"Action": [
"dynamodb:PutItem",
"dynamodb:DeleteItem",
"dynamodb:GetItem"
],
"Resource": "arn:aws:dynamodb:us-east-2:*:table/terraform"
},
{
"Sid": "dynamodb",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::terraform/*",
"arn:aws:s3:::terraform"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment