Created
July 20, 2016 06:42
-
-
Save tkuchiki/c4a9618480b000454b465524557dbbe5 to your computer and use it in GitHub Desktop.
Mackerel の AWS Integration でタグによる絞り込みを行うのに必要な権限
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": [ | |
{ | |
"Effect": "Allow", | |
"Action": "elasticloadbalancing:DescribeTags", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "rds:ListTagsForResource", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "elasticache:ListTagsForResource", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", | |
"Action": "iam:GetUser", | |
"Resource": "arn:aws:iam::xxxxxxx:user/MackerelAWSIntegrationUser" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment