diff --git a/cicd/devnet/terraform/.env b/cicd/devnet/terraform/.env index a1681f393d91..0e3b90e58861 100644 --- a/cicd/devnet/terraform/.env +++ b/cicd/devnet/terraform/.env @@ -1,13 +1,13 @@ log_level=3 # Ohio -us-east-2_start=0 -us-east-2_end=36 +us_east_2_start=0 +us_east_2_end=36 # Ireland -eu-west-1_start=37 -eu-west-1_end=72 +eu_west_1_start=37 +eu_west_1_end=72 # Sydney -ap-southeast-2_start=73 -ap-southeast-2_end=110 +ap_southeast_2_start=73 +ap_southeast_2_end=110 diff --git a/cicd/devnet/terraform/variables.tf b/cicd/devnet/terraform/variables.tf index 0af8d8607714..c86ff7df48b4 100644 --- a/cicd/devnet/terraform/variables.tf +++ b/cicd/devnet/terraform/variables.tf @@ -15,18 +15,18 @@ locals { regions = [ { "name": "us-east-2", // Ohio - "start": local.envs["us-east-2_start"], - "end": local.envs["us-east-2_end"], + "start": local.envs["us_east_2_start"], + "end": local.envs["us_east_2_end"], }, { "name": "eu-west-1", // Ireland - "start": local.envs["eu-west-1_start"], - "end": local.envs["eu-west-1_end"], + "start": local.envs["eu_west_1_start"], + "end": local.envs["eu_west_1_end"], }, { "name": "ap-southeast-2", // Sydney - "start": local.envs["ap-southeast-2_start"], - "end": local.envs["ap-southeast-2_end"], + "start": local.envs["ap_southeast_2_start"], + "end": local.envs["ap_southeast_2_end"], } ]