mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-09 22:44:56 +00:00
20 lines
274 B
HCL
20 lines
274 B
HCL
# Module Configuration
|
|
|
|
module "storage" {
|
|
source = "./modules/storage"
|
|
project_id = var.project_id
|
|
|
|
}
|
|
|
|
module "instance" {
|
|
source = "./modules/instances"
|
|
fancy_store_name = module.storage.fancy_store_name
|
|
}
|
|
|
|
module "network" {
|
|
source = "./modules/network"
|
|
|
|
}
|
|
|
|
|