-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
34 lines (28 loc) · 848 Bytes
/
variables.tf
File metadata and controls
34 lines (28 loc) · 848 Bytes
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
variable "cloud_provider" {
description = "Cloud provider name where the deployment takes place"
type = string
validation {
condition = contains(["kob", "azure", "aws", "gcp"], var.cloud_provider)
error_message = "Valid values for 'cloud_provider' are: \n- kob\n- azure\n- aws\n- gcp"
}
}
variable "cluster_name" {
description = "Kubernetes cluster name where to perform installation"
type = string
}
variable "cluster_region" {
description = "Cloud provider region where is located the cluster"
type = string
}
variable "domain_zone" {
description = "Domain zone containing the cluster domain"
type = string
}
variable "certificate_email" {
description = "Email for Let's Encrypt"
type = string
}
variable "dns_challenge_provider" {
type = string
default = null
}