Having a `result.json` file with the following content: ```json { "var1": "foo", "var2": "bar", "var3": { "key": "value" } } ``` Is it possible to retrieve HCL2 content back? ```hcl2 var1 = "foo" var2 = "bar" var3 = { key = "value" } ```
Having a
result.jsonfile with the following content:{ "var1": "foo", "var2": "bar", "var3": { "key": "value" } }Is it possible to retrieve HCL2 content back?