Skip to content

Commit 644a8cb

Browse files
Merge pull request #109 from j0can/change-force-update
fix: Set default force_update to false in Helm release module
2 parents 1de8086 + bda01ad commit 644a8cb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module jenkins {
4747
4848
app = {
4949
name = "jenkins"
50+
description = "some custom description"
5051
version = "1.5.0"
5152
chart = "jenkins"
5253
force_update = true

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ resource "helm_release" "this" {
1010
name = var.app["name"]
1111
version = var.app["version"]
1212
chart = var.app["chart"]
13-
force_update = lookup(var.app, "force_update", true)
13+
force_update = lookup(var.app, "force_update", false)
14+
description = lookup(var.app, "description", null)
1415
wait = lookup(var.app, "wait", true)
1516
recreate_pods = lookup(var.app, "recreate_pods", true)
1617
max_history = lookup(var.app, "max_history", 0)

0 commit comments

Comments
 (0)