This issue was originally opened by @FF186 as hashicorp/packer#10041. It was migrated here as a result of the Packer plugin split. The original body of the issue is below.
Hi,
I'm wondering why the customize options for vsphere-clone requires the linux_options: or else it says that customize is empty?
I want the ability to only add network_interface.
WORKS
"customize": {
"linux_options": {
"host_name": "packer-test",
"domain": "test.internal"
},
"network_interface": {
"ipv4_address": "10.0.0.10",
"ipv4_netmask": "24"
}
}
DOES NOT WORK
"customize": {
"network_interface": {
"ipv4_address": "10.0.0.10",
"ipv4_netmask": "24"
}
}
This issue was originally opened by @FF186 as hashicorp/packer#10041. It was migrated here as a result of the Packer plugin split. The original body of the issue is below.
Hi,
I'm wondering why the
customizeoptions forvsphere-clonerequires thelinux_options:or else it says thatcustomize is empty?I want the ability to only add
network_interface.