We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1de8086 + bda01ad commit 644a8cbCopy full SHA for 644a8cb
README.md
@@ -47,6 +47,7 @@ module jenkins {
47
48
app = {
49
name = "jenkins"
50
+ description = "some custom description"
51
version = "1.5.0"
52
chart = "jenkins"
53
force_update = true
main.tf
@@ -10,7 +10,8 @@ resource "helm_release" "this" {
10
name = var.app["name"]
11
version = var.app["version"]
12
chart = var.app["chart"]
13
- force_update = lookup(var.app, "force_update", true)
+ force_update = lookup(var.app, "force_update", false)
14
+ description = lookup(var.app, "description", null)
15
wait = lookup(var.app, "wait", true)
16
recreate_pods = lookup(var.app, "recreate_pods", true)
17
max_history = lookup(var.app, "max_history", 0)
0 commit comments