Hi,
The output of our file with hcl2json being built from master is the following:
{
"locals": [
{
"example": []
}
]
}
but 0.3.1 produces:
{
"locals": {
"example": [],
}
]
}
This is with the same input:
locals {
example = [
module.example,
module.example2,
]
}
We would expect locals to be an object per 0.3.1.
Hi,
The output of our file with hcl2json being built from master is the following:
but 0.3.1 produces:
This is with the same input:
We would expect locals to be an object per 0.3.1.