22 lines
515 B
JSON
22 lines
515 B
JSON
|
{
|
||
|
"builders": [{
|
||
|
"type": "amazon-ebs",
|
||
|
"ami_name": "packer-test {{timestamp}}",
|
||
|
"instance_type": "m1.small",
|
||
|
"region": "us-east-1",
|
||
|
"ssh_username": "ubuntu",
|
||
|
"ssh_local_tunnels": ["10022:localhost:22"],
|
||
|
"source_ami": "ami-0568456c",
|
||
|
"tags": {
|
||
|
"packer-test": "true"
|
||
|
}
|
||
|
}],
|
||
|
|
||
|
"provisioners": [{
|
||
|
"type": "shell-local",
|
||
|
"inline": [
|
||
|
"echo | nc -G 5 -w 5 -v localhost 10022 2>&1"
|
||
|
]
|
||
|
}]
|
||
|
}
|