-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
69 lines (53 loc) · 986 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "env_name" {
default = "kubeadm"
}
variable "pubkey" {
default = "~/.ssh/id_rsa.pub"
}
variable "privkey" {
default = "~/.ssh/id_rsa"
}
variable "master_flavor" {
default = "m1.large"
}
variable "image" {
default = "Ubuntu 16.04 LTS x86_64"
}
variable "worker_flavor" {
default = "m1.large"
}
variable "storage_flavor" {
default = "m1.large"
}
variable "external_network_id" {
default = ""
}
variable "pool_name" {
default = "public"
}
variable "availability_zone" {
default = ""
}
variable "worker_count" {
default = "1"
}
variable "worker_ips_count" {
default = "1"
}
variable "docker_volume_size" {
default = "75"
}
variable "storage_node_count" {
default = "2"
}
variable "storage_node_volume_size" {
default = "50"
}
variable "pod_network_type" {
default = "flannel"
}
variable "dns_nameservers" {
description = "An array of DNS name server names used by hosts in this subnet."
type = "list"
default = []
}