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

9
outputs.tf Normal file
View File

@@ -0,0 +1,9 @@
output "vpc_subnets_out" {
value = module.vpc.vpc_subnets
}
output "vm1_public_ip" {
value = module.compute.vm1_ip
}
output "vm2_public_ip" {
value = module.compute.vm2_ip
}