20 lines
417 B
HCL
20 lines
417 B
HCL
module "management_zone" {
|
|
source = "./management_zone"
|
|
}
|
|
module "alerting" {
|
|
source = "./alerting"
|
|
depends_on = [module.management_zone]
|
|
}
|
|
module "dashboard" {
|
|
source = "./dashboard"
|
|
depends_on = [module.management_zone]
|
|
}
|
|
module "custom_service" {
|
|
source = "./custom_service"
|
|
}
|
|
module "processgroup_naming" {
|
|
source = "./processgroup_naming"
|
|
}
|
|
module "service_naming" {
|
|
source = "./service_naming"
|
|
} |