Skip to content

Instantly share code, notes, and snippets.

@avtaniket
Created June 29, 2019 14:36
Show Gist options
  • Save avtaniket/7ff8009434175377b9cc1fc934fda0d3 to your computer and use it in GitHub Desktop.
Save avtaniket/7ff8009434175377b9cc1fc934fda0d3 to your computer and use it in GitHub Desktop.
Restricts access to two AWS regions
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Deny",
"Action": "*",
"Resource": "*",
"Condition": {
"StringNotEquals": {
"aws:RequestedRegion": [
"eu-central-1",
"eu-west-1"
]
}
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment