forked from terraform-module/terraform-helm-release
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
69 lines (58 loc) · 1.31 KB
/
Copy pathvariables.tf
File metadata and controls
69 lines (58 loc) · 1.31 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
}
variable "postrender" {
description = "Postrender to apply to generated template"
type = object({
binary_path = string
args = optional(list(string))
})
default = null
}
variable "google_project" {
type = string
}
variable "google_region" {
type = string
}
variable "cluster_endpoint" {
type = string
}
variable "cluster_ca_certificate" {
type = string
}