Skip to content

Commit

Permalink
fix 100% issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marciogoda committed May 2, 2024
1 parent 3b35383 commit 03b1cd2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
locals {
service_name = "${var.env}-${var.release["component"]}"
full_service_name = "${local.service_name}${var.name_suffix}"
lower_weight = ceil((var.spot_capacity_percentage / 100))
higher_weight = local.lower_weight == 0 ? 1 : ceil(local.lower_weight / (var.spot_capacity_percentage / 100)) - 1
spot_weight = var.spot_capacity_percentage <= 50 ? local.lower_weight : local.higher_weight
ondemand_weight = var.spot_capacity_percentage <= 50 ? local.higher_weight : local.lower_weight
p = var.spot_capacity_percentage
lower_weight = ceil((local.p / 100))
higher_weight = local.lower_weight == 0 ? 1 : ceil(local.lower_weight / (local.p / 100)) - 1
spot_weight = local.p <= 50 || local.p == 100 ? local.lower_weight : local.higher_weight
ondemand_weight = local.p <= 50 || local.p == 100 ? local.higher_weight : local.lower_weight
}

module "ecs_update_monitor" {
Expand Down

0 comments on commit 03b1cd2

Please sign in to comment.