// variables.tf variable "aws_region" { default = "us-west-2" } variable "aws_key_name" { default = "my_ec2_key" } variable "aws_az_count" { default = 2 } variable "aws_instance_type" { default = "t2.small" } variable "asg_min" { default = "1" } variable "asg_max" { default = "1" }