mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 19:41:06 -05:00
25 lines
513 B
JSON
25 lines
513 B
JSON
|
|
{
|
||
|
|
"builders": [
|
||
|
|
{
|
||
|
|
"name": "chocolate",
|
||
|
|
"type": "null",
|
||
|
|
"communicator": "none"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"provisioners": [
|
||
|
|
{
|
||
|
|
"type": "shell-local",
|
||
|
|
"inline": [
|
||
|
|
"echo hi > provisioner.{{ build `ID`}}.txt"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"post-processors": [
|
||
|
|
{
|
||
|
|
"type": "shell-local",
|
||
|
|
"inline": [
|
||
|
|
"echo hi > post-processor.{{ build `ID`}}.txt"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|