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

     1  variable "vpc_cidr" {
     2    default = "10.1.0.0/21"
     3  }
     4  
     5  variable "vswitch_cidr" {
     6    default = "10.1.1.0/24"
     7  }
     8  
     9  variable "zone" {
    10    default = "cn-beijing-c"
    11  }
    12  
    13  variable "image" {
    14    default = "ubuntu_140405_64_40G_cloudinit_20161115.vhd"
    15  }
    16  
    17  variable "instance_nat_type" {
    18    default = "ecs.n1.small"
    19  }
    20  
    21  variable "instance_worker_type" {
    22    default = "ecs.s2.large"
    23  }
    24  
    25  variable "instance_pwd" {
    26    default = "Test123456"
    27  }