-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
53 lines (44 loc) · 1.13 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
49
50
51
52
53
variable "chart_name" {
type = string
description = "Name of the chart"
}
variable "chart_version" {
description = "Version of the Helm chart to install. If not specified, the latest version will be used."
type = string
default = ""
}
variable "release_name" {
type = string
description = "Release name of the chart"
}
variable "namespace" {
type = string
description = "Namespace to install the chart"
}
variable "create_namespace" {
type = bool
default = false
description = "Create the namespace if it does not exist. Defaults to false"
}
variable "repo_name" {
type = string
description = "Name of the Helm repository"
}
variable "repo_url" {
type = string
description = "URL of the Helm repository"
}
variable "set_values" {
type = any
description = "A map of values to pass to the Helm chart"
default = {}
}
variable "always_update" {
description = "Set this to true value trigger a Helm chart update"
type = bool
default = false
}
variable "kubeconfig_json" {
description = "Kubeconfig JSON"
type = string
}