Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Created July 20, 2016 06:42
Show Gist options
  • Save tkuchiki/c4a9618480b000454b465524557dbbe5 to your computer and use it in GitHub Desktop.
Save tkuchiki/c4a9618480b000454b465524557dbbe5 to your computer and use it in GitHub Desktop.
Mackerel の AWS Integration でタグによる絞り込みを行うのに必要な権限
{
"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