mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
16 lines
238 B
HCL
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"
|
|
|
|
} |