back
terraform {
required_providers {
google-beta = ">= 3.63.0"
}
}
top
module "google_compute_regions" {
source = "./modules/google-beta/d/google_compute_regions"
# project - (optional) is a type of string
project = null
# status - (optional) is a type of string
status = null
}
top
variable "project" {
description = "(optional)"
type = string
default = null
}
variable "status" {
description = "(optional)"
type = string
default = null
}
top
data "google_compute_regions" "this" {
# project - (optional) is a type of string
project = var.project
# status - (optional) is a type of string
status = var.status
}
top
output "id" {
description = "returns a string"
value = data.google_compute_regions.this.id
}
output "names" {
description = "returns a list of string"
value = data.google_compute_regions.this.names
}
output "project" {
description = "returns a string"
value = data.google_compute_regions.this.project
}
output "this" {
value = google_compute_regions.this
}
top