Files
gcp-simple-lz/modules/network/outputs.tf
T

9 lines
228 B
Terraform

output "id" {
description = "The ID of the VPC network."
value = google_compute_network.network.id
}
output "name" {
description = "The name of the VPC network."
value = google_compute_network.network.name
}