Skip to content

Instantly share code, notes, and snippets.

@robbat2
Created May 26, 2023 22:47
Show Gist options
  • Select an option

  • Save robbat2/6a3b146758b6d77fa0fe6eaf6ea3fc4f to your computer and use it in GitHub Desktop.

Select an option

Save robbat2/6a3b146758b6d77fa0fe6eaf6ea3fc4f to your computer and use it in GitHub Desktop.
{
"Id": "SourceIP",
"Statement": [
{
"Action": "s3:*",
"Condition": {
"NotIpAddress": {
"aws:SourceIp": [
"10.0.0.0/8",
"172.16.0.0/12",
"192.168.0.0/24"
]
}
},
"Effect": "Deny",
"Principal": "*",
"Resource": [
"arn:aws:s3:::YOURBUCKETNAMEHERE",
"arn:aws:s3:::YOURBUCKETNAMEHERE/*"
],
"Sid": "SourceIP"
}
],
"Version": "2012-10-17"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment