github.com/shvar/terraform@v0.6.9-0.20151215234924-3365cd2231df/examples/aws-two-tier/variables.tf (about)

     1  variable "public_key_path" {
     2    description = <<DESCRIPTION
     3  Path to the SSH public key to be used for authentication.
     4  Ensure this keypair is added to your local SSH agent so provisioners can
     5  connect.
     6  
     7  Example: ~/.ssh/id_rsa.pub
     8  DESCRIPTION
     9  }
    10  
    11  variable "aws_region" {
    12    description = "AWS region to launch servers."
    13    default = "us-west-2"
    14  }
    15  
    16  # Ubuntu Precise 12.04 LTS (x64)
    17  variable "aws_amis" {
    18    default = {
    19      eu-west-1 = "ami-b1cf19c6"
    20      us-east-1 = "ami-de7ab6b6"
    21      us-west-1 = "ami-3f75767a"
    22      us-west-2 = "ami-21f78e11"
    23    }
    24  }