github.com/hashicorp/packer@v1.14.3/command/test-fixtures/build-variable-sharing/template.json (about)

     1  {
     2      "builders": [
     3          {
     4              "name": "chocolate",
     5              "type": "null",
     6              "communicator": "none"
     7          }
     8      ],
     9      "provisioners": [
    10          {
    11              "type": "shell-local",
    12              "inline": [
    13                  "echo hi > provisioner.{{ build `ID`}}.txt"
    14              ]
    15          }
    16      ],
    17      "post-processors": [
    18          {
    19              "type": "shell-local",
    20              "inline": [
    21                  "echo hi > post-processor.{{ build `ID`}}.txt"
    22              ]
    23          }
    24      ]
    25  }