Browse Source

update route 53 policy to be even more restricted

dehydrated-hook-powerdns
will Farrell 8 years ago
parent
commit
71ec1e692c
  1. 12
      README.md

12
README.md

@ -95,12 +95,20 @@ docker run -d \
{ {
"Effect": "Allow", "Effect": "Allow",
"Action": [ "Action": [
"route53:ListHostedZonesByName", "route53:ListHostedZonesByName"
"route53:ChangeResourceRecordSets"
], ],
"Resource": [ "Resource": [
"*" "*"
] ]
},
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/${HOSTED_ZONE_ID}"
]
} }
] ]
} }

Loading…
Cancel
Save