github.com/candidpartners/terraform@v0.9.5-0.20171005231213-29f5f88820f6/examples/alicloud-ecs-vpc-cluster/variables.tf (about) 1 variable "ecs_password" { 2 default = "Test12345" 3 } 4 5 variable "control_count" { 6 default = "3" 7 } 8 variable "control_count_format" { 9 default = "%02d" 10 } 11 variable "control_ecs_type" { 12 default = "ecs.n1.medium" 13 } 14 variable "control_disk_size" { 15 default = "100" 16 } 17 18 variable "edge_count" { 19 default = "2" 20 } 21 variable "edge_count_format" { 22 default = "%02d" 23 } 24 variable "edge_ecs_type" { 25 default = "ecs.n1.small" 26 } 27 28 variable "worker_count" { 29 default = "1" 30 } 31 variable "worker_count_format" { 32 default = "%03d" 33 } 34 variable "worker_ecs_type" { 35 default = "ecs.n1.small" 36 } 37 38 variable "short_name" { 39 default = "ali" 40 } 41 variable "ssh_username" { 42 default = "root" 43 } 44 45 variable "region" { 46 default = "cn-beijing" 47 } 48 49 variable "availability_zones" { 50 default = "cn-beijing-c" 51 } 52 53 variable "datacenter" { 54 default = "beijing" 55 }