diff --git a/terraform/india/development/main.tf b/terraform/india/development/main.tf index 5f16ab83..761d0e5e 100644 --- a/terraform/india/development/main.tf +++ b/terraform/india/development/main.tf @@ -162,7 +162,7 @@ module "nwp_consumer_ecmwf_live_ecs_task" { {secret_policy_arn:aws_secretsmanager_secret.nwp_consumer_secret.arn, values: ["ECMWF_REALTIME_S3_ACCESS_KEY", "ECMWF_REALTIME_S3_ACCESS_SECRET"] }] - container-tag = var.version-nwp-ecmwf + container-tag = var.version-nwp container-name = "openclimatefix/nwp-consumer" container-command = [ "consume" @@ -203,7 +203,7 @@ module "nwp_consumer_gfs_live_ecs_task" { { "name" : "ENVIRONMENT", "value" : local.environment }, ] container-secret_vars = [] - container-tag = var.version-nwp-gfs + container-tag = var.version-nwp container-name = "openclimatefix/nwp-consumer" container-command = [ "consume" @@ -246,7 +246,7 @@ module "nwp-consumer-metoffice-live-ecs-task" { values: ["METOFFICE_API_KEY"], } ] - container-tag = "devsjc-major-refactor" + container-tag = var.version-nwp container-name = "openclimatefix/nwp-consumer" container-command = ["consume"] } diff --git a/terraform/india/development/variables.tf b/terraform/india/development/variables.tf index fc19e486..09b6348b 100644 --- a/terraform/india/development/variables.tf +++ b/terraform/india/development/variables.tf @@ -6,22 +6,10 @@ variable region { variable version-nwp { type = string - default = "0.5.1" + default = "1.0.12" description = "Container image tag of the NWP consumer to use: openclimatefix/nwp-consumer" } -variable version-nwp-ecmwf { - type = string - default = "1.0.9" - description = "Container image tag of the NWP consumer to use for ECMWF: openclimatefix/nwp-consumer" -} - -variable version-nwp-gfs { - type = string - default = "1.0.10" - description = "Container image tag of the NWP consumer to use for GFS: openclimatefix/nwp-consumer" -} - variable version-india_api { type = string default = "0.1.0"