github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/foundation/consul/data/aws-simple/deploy/variables.tf (about)

     1  #--------------------------------------------------------------------
     2  # Access Info
     3  #--------------------------------------------------------------------
     4  
     5  variable "aws_access_key" {
     6      description = "Access key for AWS"
     7  }
     8  
     9  variable "aws_secret_key" {
    10      description = "Secret key for AWS"
    11  }
    12  
    13  variable "region" {
    14      description = "Region where we will operate."
    15  }
    16  
    17  #--------------------------------------------------------------
    18  # General settings
    19  #--------------------------------------------------------------
    20  
    21  variable "ami" {
    22      description = "AMI to launch with Consul"
    23      default = "ami-7f6a1f1a"
    24  }
    25  
    26  variable "key_name" {
    27      description = "SSH key name"
    28  }
    29  
    30  variable "subnet_public" {
    31      description = "Public subnet"
    32  }
    33  
    34  variable "vpc_id" {
    35      description = "VPC ID"
    36  }
    37  
    38  variable "vpc_cidr" {
    39      description = "VPC CIDR"
    40  }