-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathterraform.tfvars.example
105 lines (56 loc) · 1.56 KB
/
terraform.tfvars.example
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Cloudflare */
cloudflare_email = "[email protected]"
cloudflare_token = "0123456789abcdefghijklmnopqrstuvwxyz0"
cloudflare_zone_id = "abcdefghij0123456789abcdefghij01"
/* */
/* OVH */
ovh_endpoint = "ovh_eu"
ovh_application_key = "0123456789abcefg"
ovh_application_secret = "abcdefghij0123456789abcdefghij01"
ovh_consumer_key = "0123456789abcdefghij0134567890ab"
/* */
cluster_public_dns = "kubernetes.domain.tld"
domain = "domain.tld"
/* Hetzner cloud */
hcloud_token = "0123456789abcdefghijklmnopqrstuv0123456789abcdefghijklmnopqrstuv"
hcloud_location = "nbg1"
hcloud_ssh_keys = ["<ssh public key>"]
image = "Ubuntu Jammy"
edge_count = "2"
edge_type = "cx11"
etcd_count = "3"
etcd_type = "cx11"
master_count = "3"
master_type = "cx11"
node_count = "3"
node_type = "cx41"
/* */
/* Scaleway */
# scaleway_organization = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
# scaleway_token = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
# scaleway_region = "par1"
# architecture = "x86_64"
# image = "Ubuntu Jammy"
# edge_count = "2"
# edge_type = "VC1S"
# etcd_count = "3"
# etcd_type = "VC1S"
# master_count = "3"
# master_type = "VC1S"
# node_count = "3"
# node_type = "VC1M"
# node_volume_size = "50"
/* */
ssh_user = "root"
ssh_public_key = "~/.ssh/id_rsa.pub"
ssh_private_key = "~/.ssh/id_rsa.insecure"
saltmaster_host = "cfg.domain.tld"
saltsyndic_host = "10.14.63.177"
etcd_bit = "50"
master_bit = "70"
node_bit = "100"
edge_bit = "40"
docker_interface = "docker0"
overlay_interface = "flannel.1"
overlay_cidr = "10.244.0.0/16"
service_cidr = "10.96.0.0/12"