W3cubDocs

/Terraform

fastly_ip_ranges

Use this data source to get the IP ranges of Fastly edge nodes.

Example Usage

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}"]
  }
}

Attributes Reference

  • cidr_blocks - The lexically ordered list of CIDR blocks.

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/fastly/d/ip_ranges.html