From 7a3f6f16a910c52b0e3a3eca8cada2a7a5c44c4b Mon Sep 17 00:00:00 2001 From: Jonathan Moss Date: Wed, 19 Aug 2026 17:43:03 -0400 Subject: [PATCH 1/2] RELOPS-1679 Add Server 2025 alpha gallery --- terraform/azure_fxci/worker-images.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/terraform/azure_fxci/worker-images.tf b/terraform/azure_fxci/worker-images.tf index 247a8c36..5cde8aff 100644 --- a/terraform/azure_fxci/worker-images.tf +++ b/terraform/azure_fxci/worker-images.tf @@ -143,6 +143,14 @@ locals { architecture = "x64" os_type = "Windows" hyper_v_generation = "V2" + }, + "win2025_64_24h2_alpha" = { + publisher = "MicrosoftWindowsServer" + offer = "WindowsServer" + sku = "2025-datacenter-azure-edition-core" + architecture = "x64" + os_type = "Windows" + hyper_v_generation = "V2" } } From 41a3367ffc127d1c780191b42572a9c2742d3c64 Mon Sep 17 00:00:00 2001 From: Jonathan Moss Date: Wed, 19 Aug 2026 17:44:43 -0400 Subject: [PATCH 2/2] RELOPS-1679 Add Server 2025 production gallery --- terraform/azure_fxci/worker-images.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/terraform/azure_fxci/worker-images.tf b/terraform/azure_fxci/worker-images.tf index 5cde8aff..ff2caa2f 100644 --- a/terraform/azure_fxci/worker-images.tf +++ b/terraform/azure_fxci/worker-images.tf @@ -151,6 +151,14 @@ locals { architecture = "x64" os_type = "Windows" hyper_v_generation = "V2" + }, + "win2025_64_24h2" = { + publisher = "MicrosoftWindowsServer" + offer = "WindowsServer" + sku = "2025-datacenter-azure-edition-core" + architecture = "x64" + os_type = "Windows" + hyper_v_generation = "V2" } }