github.com/miquella/terraform@v0.6.17-0.20160517195040-40db82f25ec0/examples/digitalocean/variable.tf (about)

     1  # ####
     2  # Current Availiable Datacenter Regions
     3  # As of 05-07-2016
     4  #
     5  
     6  variable "do_ams2" {
     7  	description = "Digital Ocean Amsterdam Data Center 2"
     8  	default = "ams2"
     9  }
    10  
    11  variable "do_ams3" {
    12  	description = "Digital Ocean Amsterdam Data Center 3"
    13  	default = "ams3"
    14  }
    15  
    16  variable "do_fra1" {
    17  	description = "Digital Ocean Frankfurt Data Center 1"
    18  	default = "fra1"
    19  }
    20  
    21  variable "do_lon1" {
    22  	description = "Digital Ocean London Data Center 1"
    23  	default = "lon1"
    24  }
    25  
    26  variable "do_nyc1" {
    27  	description = "Digital Ocean New York Data Center 1"
    28  	default = "nyc1"
    29  }
    30  
    31  variable "do_nyc2" {
    32  	description = "Digital Ocean New York Data Center 2"
    33  	default = "nyc2"
    34  }
    35  
    36  variable "do_nyc3" {
    37  	description = "Digital Ocean New York Data Center 3"
    38  	default = "nyc3"
    39  }
    40  
    41  variable "do_sfo1" {
    42  	description = "Digital Ocean San Francisco Data Center 1"
    43  	default = "sfo1"
    44  }
    45  
    46  variable "do_sgp1" {
    47  	description = "Digital Ocean Singapore Data Center 1"
    48  	default = "sgp1"
    49  }
    50  
    51  variable "do_tor1" {
    52  	description = "Digital Ocean Toronto Datacenter 1"
    53  	default = "tor1"
    54  }
    55  
    56  # Default Os
    57  
    58  variable "ubuntu" {
    59  	description = "Default LTS"
    60  	default = "ubuntu-14-04-x64"
    61  }
    62  
    63  variable "centos" {
    64  	description = "Default Centos"
    65  	default = "centos-72-x64"
    66  }
    67  
    68  variable "coreos" {
    69  	description = "Defaut Coreos"
    70  	default = "coreos-899.17.0"
    71  }