github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/examples/aws-asg/variables.tf (about)

     1  variable "aws_region" {
     2    description = "The AWS region to create things in."
     3    default     = "us-east-1"
     4  }
     5  
     6  # ubuntu-trusty-14.04 (x64)
     7  variable "aws_amis" {
     8    default = {
     9      "us-east-1" = "ami-5f709f34"
    10      "us-west-2" = "ami-7f675e4f"
    11    }
    12  }
    13  
    14  variable "availability_zones" {
    15    default     = "us-east-1b,us-east-1c,us-east-1d,us-east-1e"
    16    description = "List of availability zones, use AWS CLI to find your "
    17  }
    18  
    19  variable "key_name" {
    20    description = "Name of AWS key pair"
    21  }
    22  
    23  variable "instance_type" {
    24    default     = "t2.micro"
    25    description = "AWS instance type"
    26  }
    27  
    28  variable "asg_min" {
    29    description = "Min numbers of servers in ASG"
    30    default     = "1"
    31  }
    32  
    33  variable "asg_max" {
    34    description = "Max numbers of servers in ASG"
    35    default     = "2"
    36  }
    37  
    38  variable "asg_desired" {
    39    description = "Desired numbers of servers in ASG"
    40    default     = "1"
    41  }