We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f71eb commit a3eeb2fCopy full SHA for a3eeb2f
governance/third-generation/common-functions/tfplan-functions/tfplan-functions.sentinel
@@ -234,9 +234,10 @@ to_string = func(obj) {
234
if index < lastIndex {
235
output += to_string(key) + ": " + to_string(obj[key]) + ", "
236
} else {
237
- output += to_string(key) + ": " + to_string(obj[key]) + "}"
+ output += to_string(key) + ": " + to_string(obj[key])
238
}
239
240
+ output += "}"
241
return output
242
else:
243
return ""
0 commit comments