21 lines
478 B
JSON
21 lines
478 B
JSON
|
{
|
||
|
"Version":"2012-10-17",
|
||
|
"Id":"SomePolicyId",
|
||
|
"Statement" :[
|
||
|
{
|
||
|
"Sid":"Statement1",
|
||
|
"Effect":"Allow",
|
||
|
"Principal" :{
|
||
|
"AWS":"{{ sns_arn.split(':')[4] }}"
|
||
|
},
|
||
|
"Action":["sns:Subscribe"],
|
||
|
"Resource": "{{ sns_arn }}",
|
||
|
"Condition" :{
|
||
|
"StringEquals" :{
|
||
|
"sns:Protocol":"email"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|