Make VPC creation optional in net-vpc module

This commit is contained in:
Julio Castillo
2020-08-31 14:09:28 +02:00
parent 0ca0f8e81b
commit 067f072c26
5 changed files with 34 additions and 14 deletions

View File

@@ -16,17 +16,17 @@
output "network" {
description = "Network resource."
value = google_compute_network.network
value = local.network
}
output "name" {
description = "The name of the VPC being created."
value = google_compute_network.network.name
value = local.network.name
}
output "self_link" {
description = "The URI of the VPC being created."
value = google_compute_network.network.self_link
value = local.network.self_link
}
output "project_id" {