diff --git a/terraform/main.tf b/terraform/main.tf index 0815e06c..08a2a623 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -32,7 +32,7 @@ locals { # Docker image for FastAPI app module "app_docker_image" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.6-alpha" image_name = substr(lower("${local.project}${local.name_suffix}"), 0, 64) root_dir = "${path.root}/../" tag = local.container_tag @@ -40,7 +40,7 @@ module "app_docker_image" { # Docker image for GDAL Python Batch jobs module "batch_gdal_python_image" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.6-alpha" image_name = substr(lower("${local.project}-gdal_python${local.name_suffix}"), 0, 64) root_dir = "${path.root}/../" docker_path = "batch" @@ -49,7 +49,7 @@ module "batch_gdal_python_image" { # Docker image for PixETL Batch jobs module "batch_pixetl_image" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.6-alpha" image_name = substr(lower("${local.project}-pixetl${local.name_suffix}"), 0, 64) root_dir = "${path.root}/../" docker_path = "batch" @@ -58,7 +58,7 @@ module "batch_pixetl_image" { # Docker image for PostgreSQL Client Batch jobs module "batch_postgresql_client_image" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.6-alpha" image_name = substr(lower("${local.project}-postgresql_client${local.name_suffix}"), 0, 64) root_dir = "${path.root}/../" docker_path = "batch" @@ -67,7 +67,7 @@ module "batch_postgresql_client_image" { # Docker image for Tile Cache Batch jobs module "batch_tile_cache_image" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/container_registry?ref=v0.4.2.6-alpha" image_name = substr(lower("${local.project}-tile_cache${local.name_suffix}"), 0, 64) root_dir = "${path.root}/../" docker_path = "batch" @@ -121,7 +121,7 @@ module "fargate_autoscaling" { # Using instance types with 1 core only module "batch_aurora_writer" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/compute_environment?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/compute_environment?ref=v0.4.2.6-alpha" ecs_role_policy_arns = [ data.terraform_remote_state.core.outputs.iam_policy_s3_write_data-lake_arn, data.terraform_remote_state.core.outputs.secrets_postgresql-reader_policy_arn, @@ -152,7 +152,7 @@ module "batch_aurora_writer" { module "batch_data_lake_writer" { - source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/compute_environment?ref=v0.4.2.3" + source = "git::https://github.com/wri/gfw-terraform-modules.git//terraform/modules/compute_environment?ref=v0.4.2.6-alpha" ecs_role_policy_arns = [ aws_iam_policy.query_batch_jobs.arn, aws_iam_policy.s3_read_only.arn,