Skip to content

Instantly share code, notes, and snippets.

@lcasartelli
Created May 3, 2021 07:36
Show Gist options
  • Save lcasartelli/bddb57cf5644fa4f2582f5aad3e4104c to your computer and use it in GitHub Desktop.
Save lcasartelli/bddb57cf5644fa4f2582f5aad3e4104c to your computer and use it in GitHub Desktop.
Deny regions outside US
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Resource": "*",
"Condition": {
"StringNotEquals": {
"aws:RequestedRegion": [
"us-east-1",
"us-east-2",
"us-west-1",
"us-west-2"
]
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment