-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (41 loc) · 1.36 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
#--------------
# Helm Release
#--------------
variable "name" {
description = "(Required) Release name. The length must not be longer than 53 characters."
type = string
}
variable "chart" {
description = "(Required) Chart name to be installed. A path may be used"
type = string
}
variable "chart_version" {
description = "(Optional) Specify the exact chart version to install. If this is not specified, the latest version is installed."
type = string
default = null
}
variable "create_namespace" {
description = "(Optional) Create the namespace if it does not exist. Defaults to false."
type = bool
default = false
}
variable "namespace" {
description = "(Optional) Namespace to install the release into. Defaults to default."
type = string
default = "default"
}
variable "repository" {
description = "(Optional) Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository."
type = string
default = null
}
variable "replace" {
description = "(Optional) Re-use the given name, even if that name is already used. This is unsafe in production. Defaults to false."
type = bool
default = false
}
variable "set" {
description = "(Optional) Custom values to be merged with the values."
type = map(string)
default = {}
}