fix formatting of bucket policy

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-05-28 12:43:57 -04:00
parent b7e194b67e
commit 07b9389f48
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 15 additions and 10 deletions

View File

@ -1,12 +1,17 @@
{
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::760668534108:user/terraform-user"
},
"Action": "s3:*",
"Resource": "arn:aws:s3:::dapps-terraform-state"
}
]
"Id": "Policy1559061820811",
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1559061813098",
"Action": "s3:*",
"Effect": "Allow",
"Resource": "arn:aws:s3:::dapps-terraform-state",
"Principal": {
"AWS": [
"arn:aws:iam::760668534108:user/terraform-user"
]
}
}
]
}