github.com/daniellockard/packer@v0.7.6-0.20141210173435-5a9390934716/test/fixtures/provisioner-shell/inline.json (about)

     1  {
     2      "builders": [{
     3          "type": "amazon-ebs",
     4          "ami_name": "packer-test {{timestamp}}",
     5          "instance_type": "m1.small",
     6          "region": "us-east-1",
     7          "ssh_username": "ubuntu",
     8          "source_ami": "ami-0568456c",
     9          "tags": {
    10              "packer-test": "true"
    11          }
    12      }],
    13  
    14      "provisioners": [{
    15          "type": "shell",
    16          "inline": [
    17              "bash -c 'echo HELLO I AM `whoami`'",
    18              "echo AND ANOTHER"
    19          ]
    20      }]
    21  }