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

     1  variable "vpc_cidr" {
     2    default = "172.16.0.0/12"
     3  }
     4  
     5  variable "vswitch_cidr" {
     6    default = "172.16.0.0/21"
     7  }
     8  
     9  variable "zone" {
    10    default = "cn-beijing-b"
    11  }
    12  
    13  variable "password" {
    14    default = "Test123456"
    15  }
    16  
    17  variable "image" {
    18    default = "ubuntu_140405_32_40G_cloudinit_20161115.vhd"
    19  }
    20  
    21  variable "ecs_type" {
    22    default = "ecs.n1.medium"
    23  }