mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
622 B
Plaintext
24 lines
622 B
Plaintext
7 years ago
|
{
|
||
|
"Version": "2012-10-17",
|
||
|
"Statement": [
|
||
|
{
|
||
|
"Action": "sns:Publish",
|
||
|
"Resource": "{{ config_sns_topic.sns_arn }}",
|
||
|
"Effect": "Allow",
|
||
|
"Sid": "PublishToSNS"
|
||
|
},
|
||
|
{
|
||
|
"Action": "s3:PutObject",
|
||
|
"Resource": "arn:aws:s3:::{{ config_s3_bucket }}/*",
|
||
|
"Effect": "Allow",
|
||
|
"Sid": "AllowPutS3Object"
|
||
|
},
|
||
|
{
|
||
|
"Action": "s3:GetBucketAcl",
|
||
|
"Resource": "arn:aws:s3:::{{ config_s3_bucket }}",
|
||
|
"Effect": "Allow",
|
||
|
"Sid": "AllowGetS3Acl"
|
||
|
}
|
||
|
]
|
||
|
}
|