You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sonar-scanner-cli-qa.json 817B

1234567891011121314151617181920212223242526272829
  1. {
  2. "builders": [
  3. {
  4. "type": "googlecompute",
  5. "project_id": "sonarqube-team",
  6. "source_image": "windows-server-1809-dc-core-v20200813",
  7. "image_name": "sonar-scanner-cli-qa",
  8. "disk_size": "50",
  9. "machine_type": "n1-standard-1",
  10. "communicator": "winrm",
  11. "winrm_username": "packer_user",
  12. "winrm_insecure": true,
  13. "winrm_use_ssl": true,
  14. "metadata": {
  15. "windows-startup-script-cmd": "winrm quickconfig -quiet & net user /add packer_user & net localgroup administrators packer_user /add & winrm set winrm/config/service/auth @{Basic=\"true\"}"
  16. },
  17. "zone": "us-central1-a",
  18. "tags": ["packer"]
  19. }
  20. ],
  21. "provisioners": [
  22. {
  23. "type": "powershell",
  24. "scripts": [
  25. "{{template_dir}}/setup.ps1"
  26. ]
  27. }
  28. ]
  29. }