Created
April 2, 2018 02:14
-
-
Save Akkiesoft/0466a4fc5ff9eb7de17ac636ce97dfbd to your computer and use it in GitHub Desktop.
特定のドメインのレコードセットだけいじれるIAMユーザーの権限設定が欲しい!(これでいいのかわからん)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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