forked from kelseyhightower/kubestack
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables.tf
86 lines (66 loc) · 1.43 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
variable "flannel_backend" {
default = "vxlan"
}
variable "flannel_network" {
default = "10.10.0.0/16"
}
variable "kubernetes_image" {
default = "kubernetes"
}
variable "project" {}
variable "portal_net" {
default = "10.200.0.0/16"
}
variable "compute_count" {
default = 2
}
variable "cluster_name" {
default = "testing"
}
variable "network_name" {
default = "internal"
}
variable "floatingip_pool" {
default = "external"
}
variable "kubernetes_flavor" {
default = "m1.medium"
}
variable "kubernetes_token" {
default = "kubernetes"
}
variable "kubernetes_user" {
default = "admin"
}
variable "username" {
description = "Your openstack username"
}
variable "password" {
description = "Your openstack password"
}
variable "tenant" {
description = "Your openstack tenant/project"
}
variable "auth_url" {
description = "Your openstack auth URL"
}
variable "public_key_path" {
description = "The path of the ssh pub key"
default = "~/.ssh/id_rsa.pub"
}
variable "whitelist_network" {
description = "network to allow connectivity from"
default = "0.0.0.0/0"
}
variable "kubectl_version" {
description = "Version of kubectl binary to download"
default = "v1.1.2"
}
variable "hyperkube_version" {
description = "Version of the hypercube container to use"
default = "v1.1.2"
}
variable "generate_ssl" {
descripion = "set to 1 to regenerate SSL certificates/keys"
default = 1
}