We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c906d87 commit 3bba93fCopy full SHA for 3bba93f
infrastructure/modules/ecs/service.tf
@@ -31,9 +31,9 @@ resource "aws_ecs_service" "ndr_ecs_service" {
31
}
32
33
resource "aws_ecs_cluster_capacity_providers" "fargate" {
34
- count = ecs_launch_type == "FARGATE" ? 1 : 0
+ count = var.ecs_launch_type == "FARGATE" ? 1 : 0
35
36
- cluster_name = aws_ecs_cluster.ndr_ecs_service.name
+ cluster_name = aws_ecs_cluster.ndr_ecs_cluster.name
37
38
capacity_providers = ["FARGATE"]
39
0 commit comments