Skip to content

Commit

Permalink
windows: default to server 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
audunsolemdal committed Nov 6, 2024
1 parent 5c635b5 commit 77252bc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions locals_images.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ locals {

## Windows ##
windows_distribution_list = {
windows2025az = {
publisher = "MicrosoftWindowsServer"
offer = "WindowsServer"
sku = "2025-datacenter-azure-edition"
version = "latest"
}
windows2025azsmall = {
publisher = "MicrosoftWindowsServer"
offer = "WindowsServer"
sku = "2025-datacenter-azure-edition-smalldisk"
version = "latest"
}
windows2022azhotpatch = {
publisher = "MicrosoftWindowsServer"
offer = "WindowsServer"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ variable "linux_distribution_name" {

variable "windows_distribution_name" {
type = string
default = "windows2022azhotpatch"
default = "windows2025az"
description = "Variable to pick an OS flavour for Windows based VM."
}

Expand Down

0 comments on commit 77252bc

Please sign in to comment.