Use this data source to get the IP ranges of Fastly edge nodes.
provider "fastly" {
no_auth = true
}
data "fastly_ip_ranges" "fastly" {}
resource "aws_security_group" "from_fastly" {
name = "from_fastly"
ingress {
from_port = "443"
to_port = "443"
protocol = "tcp"
cidr_blocks = data.fastly_ip_ranges.fastly.cidr_blocks
ipv6_cidr_blocks = data.fastly_ip_ranges.fastly.ipv6_cidr_blocks
}
}
cidr_blocks
(List of String) The lexically ordered list of ipv4 CIDR blocks.id
(String) The ID of this resource.ipv6_cidr_blocks
(List of String) The lexically ordered list of ipv6 CIDR blocks.