mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
24 lines
376 B
JSON
24 lines
376 B
JSON
{
|
|
"name": "my-custom-image",
|
|
|
|
"builders": [
|
|
{
|
|
"type": "amazon-ebs",
|
|
"region": "us-east-1",
|
|
"source_ami": "ami-de0d9eb7"
|
|
}
|
|
],
|
|
|
|
"provisioners": [
|
|
{
|
|
"type": "shell",
|
|
"path": "script.sh"
|
|
}
|
|
],
|
|
|
|
"outputs": [
|
|
{
|
|
"type": "vagrant"
|
|
}
|
|
]
|
|
}
|