Skip to content

Commit 3bba93f

Browse files
chrisbloechrisbloe-nhse
authored andcommitted
Fix typos
1 parent c906d87 commit 3bba93f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

infrastructure/modules/ecs/service.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ resource "aws_ecs_service" "ndr_ecs_service" {
3131
}
3232

3333
resource "aws_ecs_cluster_capacity_providers" "fargate" {
34-
count = ecs_launch_type == "FARGATE" ? 1 : 0
34+
count = var.ecs_launch_type == "FARGATE" ? 1 : 0
3535

36-
cluster_name = aws_ecs_cluster.ndr_ecs_service.name
36+
cluster_name = aws_ecs_cluster.ndr_ecs_cluster.name
3737

3838
capacity_providers = ["FARGATE"]
3939

0 commit comments

Comments
 (0)