mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 00:11:41 -04:00
27 lines
499 B
JSON
27 lines
499 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\"}}"
|
|
]
|
|
},
|
|
{
|
|
"type": "shell-local",
|
|
"inline": [
|
|
"echo {{ split \"some-string\" \"-\" 0 }}"
|
|
]
|
|
}
|
|
]
|
|
} |