Skip to content

Instantly share code, notes, and snippets.

@miya0001
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miya0001/9589994 to your computer and use it in GitHub Desktop.
Save miya0001/9589994 to your computer and use it in GitHub Desktop.
指定されたインスタンスIDのec2のスナップショットの作成と削除を許可するIAMのテンプレート
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ec2:CreateSnapshot",
"ec2:DeleteSnapshot"
],
"Resource": [
"arn:aws:ec2:ap-northeast-1:*:instance/i-xxxxxxxx",
"arn:aws:ec2:ap-northeast-1:*:instance/i-xxxxxxxx",
"arn:aws:ec2:ap-northeast-1:*:instance/i-xxxxxxxx"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment