From 2730e4a43484ccd4185d5d8f2129f7e0ca80bf83 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 22 Jan 2025 14:20:22 -0500 Subject: [PATCH 1/2] propagate tags to fargate tasks --- infrastructure/batch/job_definition.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infrastructure/batch/job_definition.tf b/infrastructure/batch/job_definition.tf index 4203f247..3073039b 100644 --- a/infrastructure/batch/job_definition.tf +++ b/infrastructure/batch/job_definition.tf @@ -94,5 +94,7 @@ resource "aws_batch_job_definition" "scpca_portal_project" { attempts = 3 } + propagate_tags = "SERVICE" + tags = var.batch_tags } From 4a0a225fdfd9b830449a7773359512befb62b9e2 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 23 Jan 2025 12:53:23 -0500 Subject: [PATCH 2/2] propagate_tags true --- infrastructure/batch/job_definition.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/batch/job_definition.tf b/infrastructure/batch/job_definition.tf index 3073039b..82af1749 100644 --- a/infrastructure/batch/job_definition.tf +++ b/infrastructure/batch/job_definition.tf @@ -94,7 +94,7 @@ resource "aws_batch_job_definition" "scpca_portal_project" { attempts = 3 } - propagate_tags = "SERVICE" + propagate_tags = true tags = var.batch_tags }