github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/examples/alicloud-ecs-vpc/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  }
    13  variable "datacenter" {
    14  }
    15  variable "short_name" {
    16    default = "hi"
    17  }
    18  variable "ecs_type" {
    19  }
    20  variable "ecs_password" {
    21    default = "Test12345"
    22  }
    23  variable "availability_zones" {
    24  }
    25  variable "security_groups" {
    26    type    = "list"
    27  }
    28  variable "ssh_username" {
    29    default = "root"
    30  }
    31  
    32  //if instance_charge_type is "PrePaid", then must be set period, the value is 1 to 30, unit is month
    33  variable "instance_charge_type" {
    34    default = "PostPaid"
    35  }
    36  
    37  variable "system_disk_category" {
    38    default = "cloud_efficiency"
    39  }
    40  
    41  variable "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 "allocate_public_ip" {
    53    default = true
    54  }
    55  
    56  variable "disk_category" {
    57    default = "cloud_ssd"
    58  }
    59  variable "disk_size" {
    60    default = "40"
    61  }
    62  variable "device_name" {
    63    default = "/dev/xvdb"
    64  }
    65  
    66  variable "vswitch_id" {
    67    default = ""
    68  }