diff --git a/terraform/nowcasting/development/main.tf b/terraform/nowcasting/development/main.tf index a147b2eb..78ec87a4 100644 --- a/terraform/nowcasting/development/main.tf +++ b/terraform/nowcasting/development/main.tf @@ -230,6 +230,7 @@ module "nwp-ecmwf" { { "name" : "ZARRDIR", "value" : format("s3://%s/ecmwf/data", module.s3.s3-nwp-bucket.id) }, { "name" : "LOGLEVEL", "value" : "DEBUG" }, { "name" : "SENTRY_DSN", "value" : var.sentry_dsn }, + { "name" : "CONCURRENCY", "value" : "false" }, # legacy ones { "name" : "AWS_S3_BUCKET", "value" : module.s3.s3-nwp-bucket.id }, { "name" : "ECMWF_AWS_REGION", "value": "eu-west-1" }, @@ -243,7 +244,7 @@ module "nwp-ecmwf" { {secret_policy_arn: aws_secretsmanager_secret.nwp_consumer_secret.arn, values: ["ECMWF_REALTIME_S3_ACCESS_KEY", "ECMWF_REALTIME_S3_ACCESS_SECRET"]} ] - container-tag = var.nwp_version + container-tag = var.nwp_ecmwf_version container-name = "openclimatefix/nwp-consumer" container-command = ["consume"] } diff --git a/terraform/nowcasting/development/variables.tf b/terraform/nowcasting/development/variables.tf index 04191eb8..20d0cbfe 100644 --- a/terraform/nowcasting/development/variables.tf +++ b/terraform/nowcasting/development/variables.tf @@ -22,6 +22,11 @@ variable "nwp_version" { description = "The NWP version" } +variable "nwp_ecmwf_version" { + description = "The ECMWF NWP version" + default=1.0.8 +} + variable "sat_version" { description = "The Satellite version" }