-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (34 loc) · 1.05 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
variable "k8s_name" {
type = string
description = "A name for the Kubernetes cluster."
}
variable "k8s_region" {
type = string
description = "The slug identifier for the region where the Kubernetes cluster will be created."
}
variable "k8s_version" {
type = string
description = "The slug identifier for the version of Kubernetes used for the cluster."
}
variable "k8s_node_pool_name" {
type = string
description = "A name for the node pool."
}
variable "k8s_node_pool_size" {
type = string
description = "The slug identifier for the type of Droplet to be used as workers in the node pool."
}
variable "k8s_node_count" {
type = number
description = "The number of Droplet instances in the node pool."
}
variable "wordpress_username" {
type = string
description = "Wordpress admin username. Defaults to 'admin'."
default = "admin"
}
variable "helm_chart_version" {
type = string
description = "Bitnami wordpress helm chart version. Defaults to 15.2.6"
default = "15.2.6"
}