Skip to content

Commit

Permalink
Fixed #608
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinhard-Pilz-Dynatrace committed Dec 6, 2024
1 parent 1c1935b commit 5d8e017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/hclgen/hclgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (e *exportEntries) eval(key string, value any, breadCrumbs string, schema m
if v == nil {
return
}
entry := &primitiveEntry{Key: key, Value: v, BreadCrumbs: breadCrumbs, Optional: resOpt(breadCrumbs, schema), Computed: resComputed(breadCrumbs, schema)}
entry := &primitiveEntry{Key: key, Value: v, BreadCrumbs: breadCrumbs, Optional: resOpt(breadCrumbs, schema), Computed: resComputed(breadCrumbs, schema), DefValTrue: resDefValTrue(breadCrumbs, schema)}
*e = append(*e, entry)
case []any:
if len(v) == 0 {
Expand Down

0 comments on commit 5d8e017

Please sign in to comment.