19 lines
289 B
Terraform
19 lines
289 B
Terraform
|
variable "vpc_cidr" {
|
||
|
default = "172.16.0.0/12"
|
||
|
}
|
||
|
|
||
|
variable "vswitch_cidr" {
|
||
|
default = "172.16.0.0/21"
|
||
|
}
|
||
|
|
||
|
variable "zone" {
|
||
|
default = "cn-beijing-b"
|
||
|
}
|
||
|
|
||
|
variable "image" {
|
||
|
default = "ubuntu_140405_32_40G_cloudinit_20161115.vhd"
|
||
|
}
|
||
|
|
||
|
variable "ecs_type" {
|
||
|
default = "ecs.n1.medium"
|
||
|
}
|