-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
77 lines (60 loc) · 1.82 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
variable triton_account {
description = "The same SDC_ACCOUNT used by the Triton CLI"
}
variable triton_key_id {
description = "The same SDC_KEY_ID used by the Triton CLI"
}
variable triton_url {
description = "The same SDC_URL used by the Triton CLI"
}
variable triton_key_path {
description = "Path to the SSH private key used by Triton"
}
# head /dev/urandom | base32 | head -c 8
variable secret_token {
description = "Secret token used by Kubernetes for securing the API server"
default = "UWZ6OBSL"
}
variable bastion_host {
description = "Bastion we use to bounce SSH connections into our private network"
}
variable bastion_user {
description = "If using an LX ubuntu image we'll use root, otherwise ubuntu"
default = "root"
}
variable bastion_public_key {
description = "Public SSH key for the private key used across all nodes"
}
variable private_network {
description = "The UUID of a private fabric network"
}
variable public_network {
description = "The UUID of a public fabric network"
}
variable default_user {
description = "Default user account typically used to SSH into each machine"
default = "ubuntu"
}
variable controller_package {
description = "Package which defines the compute attributes of a controller"
default = "g4-highcpu-512M"
}
variable worker_package {
description = "Package which defines the compute attributes of a worker"
default = "k4-highcpu-kvm-1.75G"
}
variable controller_image {
description = "The UUID of your k8s-controller-lx-16.04 image"
}
variable worker_image {
description = "The UUID of your k8s-worker-kvm-16.04 image"
}
variable etcd1_ip {
description = "IP address of your etcd cluster node 1"
}
variable etcd2_ip {
description = "IP address of your etcd cluster node 2"
}
variable etcd3_ip {
description = "IP address of your etcd cluster node 3"
}