github.com/amanya/packer@v0.12.1-0.20161117214323-902ac5ab2eb6/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 }