packer-cn/examples/hcl/linux/source.parallels-iso.pkr.hcl
Adrien Delorme 7732f7998c
Add http_content func to serve variables from HTTP @ preseed (#10801)
This imports hashicorp/packer-plugin-sdk#43

* code generate things
* update docs
* update guides
* update examples

We want to add a new guide.
2021-03-23 12:31:13 +01:00

14 lines
461 B
HCL

source "parallels-iso" "base-ubuntu-amd64" {
boot_wait = "10s"
guest_os_type = "ubuntu"
http_content = local.http_directory_content
parallels_tools_flavor = "lin"
prlctl_version_file = ".prlctl_version"
shutdown_command = "echo 'vagrant' | sudo -S shutdown -P now"
ssh_password = "vagrant"
ssh_port = 22
ssh_timeout = "10000s"
ssh_username = "vagrant"
}