diff --git a/.github/workflows/run.pre-commit.yml b/.github/workflows/run.pre-commit.yml_ similarity index 100% rename from .github/workflows/run.pre-commit.yml rename to .github/workflows/run.pre-commit.yml_ diff --git a/autoscaling.tf b/autoscaling.tf index e55f26b..898648a 100644 --- a/autoscaling.tf +++ b/autoscaling.tf @@ -2,7 +2,6 @@ resource "aws_eip" "autoscaling" { # If ec2_eip_count is set, use that number for number of EIPs, otherwise use var.max_size + 1 (but that might not be the best during downscaling and deletion of EIPs count = var.ec2_eip_enabled ? (var.ec2_eip_count > 0 ? var.ec2_eip_count : var.max_size + 1) : 0 public_ipv4_pool = "amazon" - vpc = true tags = { Name = "${local.name}-${count.index + 1}"