Skip to content

Commit d5e700b

Browse files
committed
chore: remove public IP address
- Complies with ONS standards
1 parent 082e153 commit d5e700b

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

terraform/dashboard/main.tf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,7 @@ resource "aws_ecs_service" "application" {
118118
network_configuration {
119119
subnets = data.terraform_remote_state.ecs_infrastructure.outputs.private_subnets
120120
security_groups = [aws_security_group.allow_rules_service.id]
121-
122-
# TODO: The container fails to launch unless a public IP is assigned
123-
# For a private ip, you would need to use a NAT Gateway?
124-
assign_public_ip = true
121+
assign_public_ip = false
125122
}
126123

127124
}

0 commit comments

Comments
 (0)