Skip to content

Instantly share code, notes, and snippets.

@siroken3
Created March 17, 2014 11:08
Show Gist options
  • Select an option

  • Save siroken3/9597477 to your computer and use it in GitHub Desktop.

Select an option

Save siroken3/9597477 to your computer and use it in GitHub Desktop.
自分のIAMパスワードを変更できるPolicy
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1393242299000",
"Effect": "Allow",
"Action": [
"iam:ChangePassword",
"iam:GetAccountPasswordPolicy"
],
"Resource": [
"arn:aws:iam::(AWSアカウントID):user/${aws:username}"
]
}
]
}
@siroken3
Copy link
Author

細かいGroupsを作ってAdd User to Groupsするといい感じだったー

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment