9 lines
228 B
Terraform
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
|
|
} |