0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-23 03:48:35 +00:00

feat(vm): Add Win 11 as os type (#720)

This commit is contained in:
Daniele De Lorenzi 2023-11-16 14:55:34 +01:00 committed by GitHub
parent 6c83e07bdf
commit 0eeb7a7fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -422,6 +422,7 @@ output "ubuntu_vm_public_key" {
- `win7` - Windows 7. - `win7` - Windows 7.
- `win8` - Windows 8, 2012 or 2012 R2. - `win8` - Windows 8, 2012 or 2012 R2.
- `win10` - Windows 10 or 2016. - `win10` - Windows 10 or 2016.
- `win11` - Windows 11
- `wvista` - Windows Vista. - `wvista` - Windows Vista.
- `wxp` - Windows XP. - `wxp` - Windows XP.
- `pool_id` - (Optional) The identifier for a pool to assign the virtual machine - `pool_id` - (Optional) The identifier for a pool to assign the virtual machine

View File

@ -3370,6 +3370,7 @@ func vmGetOperatingSystemTypeValidator() schema.SchemaValidateDiagFunc {
"win7", "win7",
"win8", "win8",
"win10", "win10",
"win11",
"wvista", "wvista",
"wxp", "wxp",
}, false)) }, false))