Skip to content

Commit 26aa84e

Browse files
authored
Add upgrade_install optional attribute
This attribute is defined here https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#upgrade_install-1 but not currently included.
1 parent fc2e4a0 commit 26aa84e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ resource "helm_release" "this" {
2929
dependency_update = lookup(var.app, "dependency_update", false)
3030
replace = lookup(var.app, "replace", false)
3131
timeout = lookup(var.app, "timeout", 300)
32+
upgrade_install = lookup(var.app, "upgrade_install", false)
3233
values = var.values
3334

3435
dynamic "set" {

0 commit comments

Comments
 (0)