Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 1.07 KB

File metadata and controls

74 lines (52 loc) · 1.07 KB

google_compute_lb_ip_ranges

back

Index

Terraform

terraform {
  required_providers {
    google-beta = ">= 3.63.0"
  }
}

top

Example Usage

module "google_compute_lb_ip_ranges" {
  source = "./modules/google-beta/d/google_compute_lb_ip_ranges"

}

top

Variables

top

Datasource

data "google_compute_lb_ip_ranges" "this" {
}

top

Outputs

output "http_ssl_tcp_internal" {
  description = "returns a list of string"
  value       = data.google_compute_lb_ip_ranges.this.http_ssl_tcp_internal
}

output "id" {
  description = "returns a string"
  value       = data.google_compute_lb_ip_ranges.this.id
}

output "network" {
  description = "returns a list of string"
  value       = data.google_compute_lb_ip_ranges.this.network
}

output "this" {
  value = google_compute_lb_ip_ranges.this
}

top