Skip to content

Commit 1354583

Browse files
committed
feat: Bump ecs module to v6.6.1
1 parent d0c0b0a commit 1354583

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

main.tf

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,16 @@ resource "aws_security_group_rule" "allow_egress" {
209209

210210
module "ecs_cluster" {
211211
count = var.create_ecs_cluster ? 1 : 0
212-
source = "git::https://github.com/terraform-aws-modules/terraform-aws-ecs?ref=6b52c965734d95767d8e20d965afcd0db29dae5e" # v5.11.2
212+
source = "git::https://github.com/terraform-aws-modules/terraform-aws-ecs?ref=be968fc4af733fae2ac41dfb3c34dce7712e028f" # v6.6.1
213213

214214
cluster_name = var.name
215215

216-
fargate_capacity_providers = {
216+
default_capacity_provider_strategy = {
217217
FARGATE = {
218-
default_capacity_provider_strategy = {
219-
weight = 50
220-
}
218+
weight = 50
221219
}
222220
FARGATE_SPOT = {
223-
default_capacity_provider_strategy = {
224-
weight = 50
225-
}
221+
weight = 50
226222
}
227223
}
228224

0 commit comments

Comments
 (0)