Skip to content

Commit

Permalink
Add ALLOW_BIND_ZIP_FILTER variable to API
Browse files Browse the repository at this point in the history
  • Loading branch information
eternaltyro committed Mar 29, 2024
1 parent b5d6dca commit a0526a8
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 @@ -134,7 +134,11 @@ module "ecs-api" {
APP_SECRET_KEY = var.app_secret_key
}
)
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 a0526a8

Please sign in to comment.