-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
variables.tf
44 lines (38 loc) · 946 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 "namespace" {
description = "namespace where to deploy an application"
type = string
}
variable "app" {
description = "an application to deploy"
type = map(any)
}
variable "repository_config" {
description = "repository configuration"
type = map(any)
default = {}
}
variable "values" {
description = "Extra values"
type = list(string)
default = []
}
variable "set" {
description = "Value block with custom STRING values to be merged with the values yaml."
type = list(object({
name = string
value = string
}))
default = null
}
variable "set_sensitive" {
description = "Value block with custom sensitive values to be merged with the values yaml that won't be exposed in the plan's diff."
type = list(object({
path = string
value = string
}))
default = null
}
variable "repository" {
description = "Helm repository"
type = string
}