github.com/recobe182/terraform@v0.8.5-0.20170117231232-49ab22a935b7/examples/aws-ecs-alb/variables.tf (about) 1 variable "aws_region" { 2 description = "The AWS region to create things in." 3 default = "us-west-2" 4 } 5 6 variable "az_count" { 7 description = "Number of AZs to cover in a given AWS region" 8 default = "2" 9 } 10 11 variable "key_name" { 12 description = "Name of AWS key pair" 13 } 14 15 variable "instance_type" { 16 default = "t2.small" 17 description = "AWS instance type" 18 } 19 20 variable "asg_min" { 21 description = "Min numbers of servers in ASG" 22 default = "1" 23 } 24 25 variable "asg_max" { 26 description = "Max numbers of servers in ASG" 27 default = "2" 28 } 29 30 variable "asg_desired" { 31 description = "Desired numbers of servers in ASG" 32 default = "1" 33 } 34 35 variable "admin_cidr_ingress" { 36 description = "CIDR to allow tcp/22 ingress to EC2 instance" 37 }