Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created April 2, 2018 02:14
Show Gist options
  • Save Akkiesoft/0466a4fc5ff9eb7de17ac636ce97dfbd to your computer and use it in GitHub Desktop.
Save Akkiesoft/0466a4fc5ff9eb7de17ac636ce97dfbd to your computer and use it in GitHub Desktop.
特定のドメインのレコードセットだけいじれるIAMユーザーの権限設定が欲しい!(これでいいのかわからん)
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"route53:TestDNSAnswer",
"route53:ListHostedZones",
"route53:GetCheckerIpRanges",
"route53:GetHostedZone",
"route53:ListResourceRecordSets"
],
"Resource": "*"
},
{
"Sid": "VisualEditor1",
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets"
],
"Resource": "arn:aws:route53:::hostedzone/<特定のドメインのID>"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment