0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 10:33:46 +00:00

impl(proxmoxtf): Intel E1000E support (#1191)

Signed-off-by: DevMiner <devminer@devminer.xyz>
This commit is contained in:
DevMiner 2024-04-09 02:35:58 +02:00 committed by GitHub
parent a1058f4633
commit f0a7afa57d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -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.

View File

@ -118,6 +118,7 @@ func Schema() map[string]*schema.Schema {
Default: dvNetworkDeviceModel,
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{
"e1000",
"e1000e",
"rtl8139",
"virtio",
"vmxnet3",