Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 992 Bytes

fastly_ip_ranges.md

File metadata and controls

74 lines (52 loc) · 992 Bytes

fastly_ip_ranges

back

Index

Terraform

terraform {
  required_providers {
    fastly = ">= 0.28.1"
  }
}

top

Example Usage

module "fastly_ip_ranges" {
  source = "./modules/fastly/d/fastly_ip_ranges"

}

top

Variables

top

Datasource

data "fastly_ip_ranges" "this" {
}

top

Outputs

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