* clean up extra quoting that can cause text template failures. when everyone else abandons you, regex will always be there. * LINTING
21 lines
397 B
JSON
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\"}}"
|
|
]
|
|
}
|
|
]
|
|
} |