You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/examples/alicloud-ecs-userdata/variables.tf

19 lines
289 B

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"
}