Skip to main content
Gists are examples that demonstrate a concept, but are not actively maintained and may not work in your environment or current versions of Atmos without adaptations.
store-writer-policy.json880 B
View on GitHub
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AtmosGistSSMStoreHooks",
"Effect": "Allow",
"Action": [
"ssm:PutParameter",
"ssm:GetParameter",
"ssm:DeleteParameter"
],
"Resource": "arn:aws:ssm:REGION:ACCOUNT_ID:parameter/atmos-gist/store-hooks/*"
},
{
"Sid": "AtmosGistSSMDescribe",
"Effect": "Allow",
"Action": [
"ssm:DescribeParameters"
],
"Resource": "*"
},
{
"Sid": "AtmosGistASMStoreHooks",
"Effect": "Allow",
"Action": [
"secretsmanager:CreateSecret",
"secretsmanager:PutSecretValue",
"secretsmanager:GetSecretValue",
"secretsmanager:DeleteSecret",
"secretsmanager:DescribeSecret"
],
"Resource": "arn:aws:secretsmanager:REGION:ACCOUNT_ID:secret:atmos-gist/store-hooks/*"
}
]
}