You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/command/test-fixtures/hcl2_upgrade/escaping/input.json

27 lines
499 B

{
"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\"}}"
]
},
{
"type": "shell-local",
"inline": [
"echo {{ split \"some-string\" \"-\" 0 }}"
]
}
]
}