Skip to content

Commit

Permalink
actually added second container to stage
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed Sep 17, 2024
1 parent 7c7a3c9 commit 0e1856f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tofu/modules/services/backend-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "aws_ecs_service" "backend_service" {

health_check_grace_period_seconds = 180
task_definition = aws_ecs_task_definition.backend.arn
desired_count = var.app_env != "prod" ? 1 : 2
desired_count = var.app_env != "stage" ? 1 : 2
tags = var.tags
}

Expand Down

0 comments on commit 0e1856f

Please sign in to comment.