Skip to content

Instantly share code, notes, and snippets.

@coingraham
Created March 21, 2016 17:25
Show Gist options
  • Save coingraham/ff8816b79155b0f277f6 to your computer and use it in GitHub Desktop.
Save coingraham/ff8816b79155b0f277f6 to your computer and use it in GitHub Desktop.
AWS IAM Policy Admin with MFA Only
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "*",
"Resource": "*",
"Condition": {
"Bool": {
"aws:MultiFactorAuthPresent": "true"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment