-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (32 loc) · 888 Bytes
/
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
variable "config_path" {
type = string
default = "~/.kube/config"
description = "path of the Kubernetes client configuration file, set to null for in-cluster"
}
variable "config_context" {
type = string
default = null
description = "configuration context to use, null means use current-context"
}
variable "domain" {
type = string
description = "Kubernetes cluster domain"
}
variable "ingress_class" {
type = string
default = null
description = "ingress class name"
}
variable "issuer_name" {
type = string
default = null
description = "cluster issuer name for HTTPS"
}
variable "gitea_password" {
type = string
description = "seed password for Gitea"
}
variable "tekton_password" {
type = string
description = "password for Tekton dashboard"
}