init repo

This commit is contained in:
Gregory
2023-04-12 16:23:57 -07:00
commit 97e995b906
12 changed files with 176 additions and 0 deletions

7
modules/vpc/outputs.tf Normal file
View File

@@ -0,0 +1,7 @@
output "vpc_network_name" {
value = google_compute_network.vpc_network.name
}
output "vpc_subnets" {
value = google_compute_subnetwork.vpc_subnets.*.self_link
}