Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save david7482/2c53cf25cc3f865b814e7f6a7895242c to your computer and use it in GitHub Desktop.
Save david7482/2c53cf25cc3f865b814e7f6a7895242c to your computer and use it in GitHub Desktop.
s3-bucket-policy-allow-cloudflare-ip
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AddPerm",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::api-doc.domain-a.com/*",
"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"
]
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment