0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 11:28:33 +00:00

feat(vm): add support for EPYC-Genoa cpu type (#2040)

Signed-off-by: Shawn M. Hanes <smhanes15@gmail.com>
This commit is contained in:
Shawn M. Hanes 2025-07-14 18:07:10 -04:00 committed by GitHub
parent 11bcb7a4c1
commit 74caca5fbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View File

@ -216,7 +216,7 @@ output "ubuntu_vm_public_key" {
- `Cascadelake-Server`/`Cascadelake-Server-noTSX`/`Cascadelake-Server-v2`/`Cascadelake-Server-v4`/`Cascadelake-Server-v5` - Intel Xeon 32xx/42xx/52xx/62xx/82xx/92xx (2019).
- `Conroe` - Intel Celeron_4x0 (Conroe/Merom Class Core 2, 2006).
- `Cooperlake`/`Cooperlake-v2`
- `EPYC`/`EPYC-IBPB`/`EPYC-Milan`/`EPYC-Rome`/`EPYC-Rome-v2`/`EPYC-v3` / `EPYC-v4` -
- `EPYC`/`EPYC-Genoa`/`EPYC-IBPB`/`EPYC-Milan`/`EPYC-Rome`/`EPYC-Rome-v2`/`EPYC-v3`/`EPYC-v4`/ -
AMD EPYC Processor (2017).
- `Haswell`/`Haswell-IBRS`/`Haswell-noTSX`/`Haswell-noTSX-IBRS` - Intel
Core Processor (Haswell, 2013).

View File

@ -136,6 +136,7 @@ func ResourceSchema() schema.Attribute {
"Cooperlake",
"Cooperlake-v2",
"EPYC",
"EPYC-Genoa",
"EPYC-IBPB",
"EPYC-Milan",
"EPYC-Rome",

View File

@ -78,6 +78,7 @@ func CPUTypeValidator() schema.SchemaValidateDiagFunc {
"Cooperlake",
"Cooperlake-v2",
"EPYC",
"EPYC-Genoa",
"EPYC-IBPB",
"EPYC-Milan",
"EPYC-Rome",