Skip to content

Commit

Permalink
Fix: Environment variables DYNATRACE_HEREDOC didn't get evaluated c…
Browse files Browse the repository at this point in the history
…orrectly
  • Loading branch information
Reinhard-Pilz-Dynatrace committed Jun 21, 2023
1 parent c8db863 commit 426e983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/hclgen/primitive_entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"github.com/zclconf/go-cty/cty"
)

var preventHeredoc = os.Getenv("DYNATRACE_HEREDOC") != "false"
var preventHeredoc = os.Getenv("DYNATRACE_HEREDOC") == "false"

type primitiveEntry struct {
Indent string
Expand Down

0 comments on commit 426e983

Please sign in to comment.