mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 02:42:42 -05:00
Add bats tests for the ansible provisioner. The tests exercise all options and the minimal set of options of the provisioner. Fix the bats tests for the googlecompute builder.
16 lines
389 B
JSON
16 lines
389 B
JSON
{
|
|
"variables": {
|
|
"account_file": null,
|
|
"project_id": null
|
|
},
|
|
|
|
"builders": [{
|
|
"type": "googlecompute",
|
|
"account_file": "{{user `account_file`}}",
|
|
"project_id": "{{user `project_id`}}",
|
|
|
|
"image_name": "packerbats-minimal-{{timestamp}}",
|
|
"source_image": "debian-7-wheezy-v20141108",
|
|
"zone": "us-central1-a"
|
|
}]
|
|
}
|