github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/examples/alicloud-ecs-slb/variables.tf (about)

     1  variable "count" {
     2    default = "1"
     3  }
     4  variable "count_format" {
     5    default = "%02d"
     6  }
     7  variable "image_id" {
     8    default = "ubuntu_140405_64_40G_cloudinit_20161115.vhd"
     9  }
    10  
    11  variable "role" {
    12    default = "worder"
    13  }
    14  variable "datacenter" {
    15    default = "beijing"
    16  }
    17  variable "short_name" {
    18    default = "hi"
    19  }
    20  variable "ecs_type" {
    21    default = "ecs.n1.small"
    22  }
    23  variable "ecs_password" {
    24    default = "Test12345"
    25  }
    26  variable "availability_zones" {
    27    default = "cn-beijing-b"
    28  }
    29  variable "ssh_username" {
    30    default = "root"
    31  }
    32  
    33  variable "allocate_public_ip" {
    34    default = true
    35  }
    36  
    37  variable "internet_charge_type" {
    38    default = "PayByTraffic"
    39  }
    40  
    41  variable "slb_internet_charge_type" {
    42    default = "paybytraffic"
    43  }
    44  variable "internet_max_bandwidth_out" {
    45    default = 5
    46  }
    47  
    48  variable "io_optimized" {
    49    default = "optimized"
    50  }
    51  
    52  variable "slb_name" {
    53    default = "slb_worder"
    54  }
    55  
    56  variable "internet" {
    57    default = true
    58  }