Skip to content

Commit

Permalink
fix: add some missing ecs config to terraform (#2957)
Browse files Browse the repository at this point in the history
A few missing values were discovered while deploying some whitelist changes
  • Loading branch information
niross authored Jan 23, 2024
1 parent 662882b commit 03a69be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions infra/ecs_main_admin.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ resource "aws_ecs_service" "admin" {
launch_type = "FARGATE"
platform_version = "1.4.0"
deployment_maximum_percent = 600
timeouts {}

network_configuration {
subnets = "${aws_subnet.private_with_egress.*.id}"
Expand Down Expand Up @@ -631,6 +632,8 @@ resource "aws_alb" "admin" {
name = "${var.prefix}-admin"
subnets = "${aws_subnet.public.*.id}"
security_groups = ["${aws_security_group.admin_alb.id}"]
enable_deletion_protection = true
timeouts {}

access_logs {
bucket = "${aws_s3_bucket.alb_access_logs.id}"
Expand Down

0 comments on commit 03a69be

Please sign in to comment.