Skip to content

Commit

Permalink
Update main.tf , Include allow bind zip filter to worker daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma authored Apr 8, 2024
1 parent d5c1d36 commit 9930983
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion infra/prod-aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9930983

Please sign in to comment.