Skip to content

Instantly share code, notes, and snippets.

@davidmerrick
Created May 24, 2017 18:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davidmerrick/b520e4e9a94a857e7f8e054ac2e1d2b5 to your computer and use it in GitHub Desktop.
Save davidmerrick/b520e4e9a94a857e7f8e054ac2e1d2b5 to your computer and use it in GitHub Desktop.
S3 Bucket policy to restrict access only to CloudFlare IPs
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::bucket-name/*",
"Condition": {
"IpAddress": {
"aws:SourceIp": [
"103.21.244.0/22",
"103.22.200.0/22",
"103.31.4.0/22",
"104.16.0.0/12",
"108.162.192.0/18",
"131.0.72.0/22",
"141.101.64.0/18",
"162.158.0.0/15",
"172.64.0.0/13",
"173.245.48.0/20",
"188.114.96.0/20",
"190.93.240.0/20",
"197.234.240.0/22",
"198.41.128.0/17",
"199.27.128.0/21"
]
}
}
}
]
}
@sacredwx
Copy link

sacredwx commented Nov 5, 2018

Add IPv6 too

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