You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had so many problems trying to get network mapping stuff working... There was just too many combinations to look for to make it work perfectly for every combination. I prefer to have it working with less compatibility.
https://github.com/josenk/terraform-provider-esxi?tab=readme-ov-file#known-issues-with-vmware_esxi
- Using a local source vmx files should not have any networks configured. There is very limited network interface mapping abilities in ovf_tools for vmx files. It's best to simply clean out all network information from your vmx file. The plugin will add network configuration to the destination vm guest as required.
looks like by adding:
--net:"bridged"="VM Network" --net:"custom"="Dummy"
this will work - i.e., running this in cli:
Covftool --acceptAllEulas --noSSLVerify --X:useMacNaming=false -dm=thin --name="fs24vm-01" --overwrite -ds="datastore1" --net:"bridged"="VM Network" --net:"custom"="Dummy" "abc.vmx" "vi://root:[email protected]:443//"
was successful. Can this be baked into the provider?
The text was updated successfully, but these errors were encountered: