-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
48 lines (39 loc) · 1.04 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
variable cluster_name {
type = string
description = "(Required) Provide DigitalOcean cluster name"
}
variable region {
type = string
description = "(Required) Provide DigitalOcean region"
}
variable default_node_group {
type = any
}
variable k8s_version {
type = string
description = "Provide DigitalOcean Kubernetes minor version (e.g. '1.15' or higher)"
default = "1.19.3-do"
}
variable vpc_id {
type = string
description = "VPC id"
}
variable kubeconfig_bucket {
type = string
description = "Bucket name for kubeconfig upload"
}
variable kubeconfig_bucket_region {
type = string
description = "Region of bucket name for kubeconfig upload. Default will be set to kluster rregion."
default = ""
}
variable kubeconfig_bucket_key {
type = string
description = "Path and filename og kubeconfig in do spaces bucket"
default = "kubeconfig"
}
variable additional_node_groups {
description = "A list of worker groups configs"
default = []
type = any
}