From f0a7afa57d7dc538320efe436890e23cc89993e3 Mon Sep 17 00:00:00 2001 From: DevMiner Date: Tue, 9 Apr 2024 02:35:58 +0200 Subject: [PATCH] impl(proxmoxtf): Intel E1000E support (#1191) Signed-off-by: DevMiner --- docs/resources/virtual_environment_vm.md | 1 + proxmoxtf/resource/vm/network/schema.go | 1 + 2 files changed, 2 insertions(+) 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",