Megan Marsh 0993c976fa
hcl2_upgrade escaped quotes fix (#10794)
* clean up extra quoting that can cause text template failures. when everyone else abandons you, regex will always be there.

* LINTING
2021-03-22 10:56:30 +01:00

21 lines
397 B
JSON

{
"variables": {
"conf": "{{ env \"ONE\" }}-{{env \"ANOTHER\"}}-{{ env `BACKTICKED` }}",
"nospaces": "{{env \"SOMETHING\"}}",
"manyspaces": "{{ env \"ASDFASDF\"}}"
},
"builders": [
{
"type": "null",
"communicator": "none"
}
],
"provisioners": [
{
"type": "shell-local",
"inline": [
"echo {{user \"conf\"}}-{{timestamp}}-{{isotime \"01-02-2006\"}}"
]
}
]
}