From 9930983645da9e6e2a2d635336dcfc722c76cde6 Mon Sep 17 00:00:00 2001 From: Kshitij Raj Sharma <36752999+kshitijrajsharma@users.noreply.github.com> Date: Mon, 8 Apr 2024 06:22:48 +0545 Subject: [PATCH] Update main.tf , Include allow bind zip filter to worker daemon --- infra/prod-aws/main.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/infra/prod-aws/main.tf b/infra/prod-aws/main.tf index fa3836e0..01100006 100644 --- a/infra/prod-aws/main.tf +++ b/infra/prod-aws/main.tf @@ -205,7 +205,11 @@ module "ecs-worker-daemon" { "-n", "ondemand_daemon-%h" ] container_secrets = local.container_secrets - container_envvars = local.container_envvars + container_envvars = merge(local.container_envvars, + { + ALLOW_BIND_ZIP_FILTER = "True" + } + ) service_subnets = module.vpc.private_subnets