Skip to content

Commit

Permalink
deploy should be boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankatliarchuk committed Aug 1, 2020
1 parent e98cfba commit be91c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource helm_release this {
count = var.app["deploy"]
count = var.app["deploy"] == true ? 1 : 0
namespace = var.namespace
repository = var.repository
name = var.app["name"]
Expand Down

0 comments on commit be91c10

Please sign in to comment.