Skip to content

Commit be91c10

Browse files
deploy should be boolean
1 parent e98cfba commit be91c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource helm_release this {
2-
count = var.app["deploy"]
2+
count = var.app["deploy"] == true ? 1 : 0
33
namespace = var.namespace
44
repository = var.repository
55
name = var.app["name"]

0 commit comments

Comments
 (0)