Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit Sarkar committed Jul 24, 2019
1 parent 1c5d5ac commit 1cd486e
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
Expand Up @@ -87,7 +87,7 @@ JSON
}

data "template_file" "_environment_var" {
count = length(keys(var.environment_vars))
count = length(keys(var.environment_vars)) > 0 ? length(keys(var.environment_vars)) : 0
template = <<JSON
{
$${join(",\n",
Expand Down

0 comments on commit 1cd486e

Please sign in to comment.