-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvariables.tf
44 lines (37 loc) · 985 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
39
40
41
42
43
44
variable "kubeconfig_filename" {
type = string
description = "Path to kubeconfig"
}
variable "namespace" {
type = string
description = "Name of the namespace where releases will be deployed. If emptu, the module will attempt to create the namespace"
default = ""
}
variable "flux_chart_version" {
type = string
description = "Flux chart version"
default = "0.16.0"
}
variable "helm_operator_chart_version" {
type = string
description = "Helm operator chart version"
default = "0.4.0"
}
variable "flux_values" {
description = "Helm values for flux release"
default = {}
}
variable "helm_operator_values" {
description = "Helm values for helm operator release"
default = {}
}
variable "generate_ssh_key" {
type = bool
description = "Generate SSH key"
default = false
}
variable "ssh_private_key" {
type = string
description = "SSH private key for flux"
default = ""
}