diff --git a/docs/resources/virtual_environment_vm.md b/docs/resources/virtual_environment_vm.md index 9d0a51a4..c08ae702 100644 --- a/docs/resources/virtual_environment_vm.md +++ b/docs/resources/virtual_environment_vm.md @@ -439,6 +439,7 @@ output "ubuntu_vm_public_key" { - `mac_address` - (Optional) The MAC address. - `model` - (Optional) The network device model (defaults to `virtio`). - `e1000` - Intel E1000. + - `e1000e` - Intel E1000E. - `rtl8139` - Realtek RTL8139. - `virtio` - VirtIO (paravirtualized). - `vmxnet3` - VMware vmxnet3. diff --git a/proxmoxtf/resource/vm/network/schema.go b/proxmoxtf/resource/vm/network/schema.go index d9173b8c..46196c40 100644 --- a/proxmoxtf/resource/vm/network/schema.go +++ b/proxmoxtf/resource/vm/network/schema.go @@ -118,6 +118,7 @@ func Schema() map[string]*schema.Schema { Default: dvNetworkDeviceModel, ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{ "e1000", + "e1000e", "rtl8139", "virtio", "vmxnet3",