packer-cn/test/fixtures/provisioner-ansible/minimal.json

21 lines
488 B
JSON
Raw Normal View History

{
"variables": {},
"provisioners": [
{
"type": "ansible",
"playbook_file": "./playbook.yml"
}
],
"builders": [
{
"type": "googlecompute",
"account_file": "{{user `account_file`}}",
"project_id": "{{user `project_id`}}",
"image_name": "packerbats-minimal-{{timestamp}}",
2016-11-26 22:13:36 -05:00
"source_image": "debian-8-jessie-v20161027",
"zone": "us-central1-a",
2016-11-26 22:13:36 -05:00
"ssh_username": "debian"
}
]
}