revert unnecessary changes

pull-requests/507/from
ankitchauhan01 2023-05-08 10:43:52 +05:30
parent fd5d869db1
commit 2e5715ade8
3 changed files with 60 additions and 0 deletions

20
CN_PREPROD/main.tf Normal file
View File

@ -0,0 +1,20 @@
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"
}

20
EMEA_PREPROD/main.tf Normal file
View File

@ -0,0 +1,20 @@
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"
}

20
NA_PREPROD/main.tf Normal file
View File

@ -0,0 +1,20 @@
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"
}