github.com/StackPointCloud/packer@v0.10.2-0.20180716202532-b28098e0f79b/test/fixtures/provisioner-ansible/scp-to-sftp.json (about) 1 { 2 "variables": {}, 3 "provisioners": [ 4 { 5 "type": "ansible", 6 "playbook_file": "./playbook.yml", 7 "extra_arguments": [ 8 ], 9 "sftp_command": "/usr/bin/false", 10 "use_sftp": false 11 } 12 ], 13 "builders": [ 14 { 15 "type": "googlecompute", 16 "account_file": "{{user `account_file`}}", 17 "project_id": "{{user `project_id`}}", 18 "image_name": "packerbats-scp-to-sftp-{{timestamp}}", 19 "source_image": "debian-8-jessie-v20161027", 20 "zone": "us-central1-a", 21 "ssh_username": "debian", 22 "ssh_file_transfer_method": "sftp" 23 } 24 ] 25 }