Skip to content

Commit

Permalink
Merge pull request #23 from hashicorp-modules/b-remove-min-elb-capacity
Browse files Browse the repository at this point in the history
Remove min_elb_capacity
  • Loading branch information
bensojona authored Sep 4, 2018
2 parents 2368278 + b0d312d commit 6bfff5d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ resource "aws_autoscaling_group" "vault" {
vpc_zone_identifier = ["${var.subnet_ids}"]
max_size = "${var.count != -1 ? var.count : length(var.subnet_ids)}"
min_size = "${var.count != -1 ? var.count : length(var.subnet_ids)}"
min_elb_capacity = "${var.count != -1 ? var.count : length(var.subnet_ids)}"
desired_capacity = "${var.count != -1 ? var.count : length(var.subnet_ids)}"
default_cooldown = 30
force_delete = true
Expand Down

0 comments on commit 6bfff5d

Please sign in to comment.