Skip to content

Commit

Permalink
fix: Fix desired_capacity value passing (#193)
Browse files Browse the repository at this point in the history
* update to capacity variable

* space
  • Loading branch information
George Scott authored Mar 21, 2024
1 parent d03ba3b commit ebfb34d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/app_eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module "eks" {
primary = {
# IMDsv2
create_launch_template = local.create_launch_template,
desired_capacity = 2,
desired_capacity = var.desired_capacity,
disk_encrypted = local.encrypt_ebs_volume,
disk_kms_key_id = var.kms_key_arn,
disk_type = "gp3"
Expand Down Expand Up @@ -164,6 +164,5 @@ module "external_dns" {
oidc_provider = aws_iam_openid_connect_provider.eks
fqdn = var.fqdn


depends_on = [module.eks]
}

0 comments on commit ebfb34d

Please sign in to comment.