Files
GSP662/main.tf
gregory hendrickson c15fb6f9f6 .
2023-03-15 15:02:37 -07:00

16 lines
238 B
HCL

# Module Configuration
module "storage" {
source = "./modules/storage"
project_id = var.project_id
}
output "fancy_store_name" {
value = module.storage.fancy_store_name
}
module "instance" {
source = "./modules/instances"
}