Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

removed availability_zones from asg #247

Merged
merged 2 commits into from
Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion modules/asg/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
*/
# Auto-Scaling Group
resource "aws_autoscaling_group" "cluster" {
availability_zones = var.azs
force_delete = true
health_check_grace_period = 300
health_check_type = var.health_check_type
Expand Down
5 changes: 0 additions & 5 deletions modules/asg/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ variable "public_ip" {
type = string
}

variable "azs" {
description = "list of availability zones to associate with the ASG"
type = list(string)
}

variable "subnet_ids" {
description = "list of subnets to associate with the ASG (by id)"
type = list(string)
Expand Down