-
Notifications
You must be signed in to change notification settings - Fork 32
/
variables.tf
74 lines (59 loc) · 1.58 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
variable "auth_token" {
description = "Your Equinix Metal API key"
}
variable "organization_id" {
description = "Your Equinix Metal organization where the project k8s-bgp will be created"
}
variable "project_name" {
description = "The project name, k8s-bgp is used as default if not specified"
default = "k8s-bgp"
}
variable "docker_version" {
default = "20.10.12"
}
variable "kubernetes_version" {
description = "Kubernetes Version"
default = "1.18.3"
}
variable "kubernetes_apt_release" {
description = "apt.kubernetes.io Ubuntu release to use"
default = "xenial"
}
variable "kubernetes_port" {
description = "Kubernetes API Port"
default = "6443"
}
variable "kubernetes_dns_ip" {
description = "Kubernetes DNS IP"
default = "192.168.0.10"
}
variable "kubernetes_cluster_cidr" {
description = "Kubernetes Cluster Subnet"
default = "172.16.0.0/12"
}
variable "kubernetes_service_cidr" {
description = "Kubernetes Service Subnet"
default = "192.168.0.0/16"
}
variable "kubernetes_dns_domain" {
description = "Kubernetes Internal DNS Domain"
default = "cluster.local"
}
variable "metro" {
default = "sv"
}
variable "worker_count" {
default = 2
}
variable "controller_plan" {
description = "Set the Equinix Metal server type for the controller"
default = "c3.small.x86"
}
variable "worker_plan" {
description = "Set the Equinix Metal server type for the workers"
default = "c3.small.x86"
}
variable "metal_os" {
description = "Set the Equinix Metal OS for the controller and workers"
default = "ubuntu_20_04"
}