back
terraform {
required_providers {
fastly = ">= 0.28.1"
}
}
top
module "fastly_ip_ranges" {
source = "./modules/fastly/d/fastly_ip_ranges"
}
top
top
data "fastly_ip_ranges" "this" {
}
top
output "cidr_blocks" {
description = "returns a list of string"
value = data.fastly_ip_ranges.this.cidr_blocks
}
output "id" {
description = "returns a string"
value = data.fastly_ip_ranges.this.id
}
output "ipv6_cidr_blocks" {
description = "returns a list of string"
value = data.fastly_ip_ranges.this.ipv6_cidr_blocks
}
output "this" {
value = fastly_ip_ranges.this
}
top