Skip to content

Commit

Permalink
test the Graviton change
Browse files Browse the repository at this point in the history
  • Loading branch information
keirbadger committed Apr 24, 2024
1 parent 65ba1dd commit 29c3eb0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

locals {
service_name = "${var.env}-${var.release["component"]}"
full_service_name = "${local.service_name}${var.name_suffix}"
Expand All @@ -21,16 +20,21 @@ locals {
capacity_provider = "${var.ecs_cluster}-native-scaling-graviton"
weight = 1
},
] : []
] : [
{
capacity_provider = "${var.ecs_cluster}-native-scaling"
weight = 1
},
]
}

output "capacity_providers" {
value = local.capacity_providers
}

module "service" {
source = "mergermarket/test-load-balanced-ecs-service-no-target-group/acuris"
version = "10.0.3"
source = "mergermarket/load-balanced-ecs-service-no-target-group/acuris"
version = "2.5.0"

name = local.full_service_name
cluster = var.ecs_cluster
Expand Down

0 comments on commit 29c3eb0

Please sign in to comment.