mirror of
https://github.com/actions/runner-images.git
synced 2026-01-04 09:13:33 +08:00
Co-authored-by: Shamil Mubarakshin <127750046+shamil-mubarakshin@users.noreply.github.com>
25 lines
847 B
HCL
25 lines
847 B
HCL
locals {
|
|
image_properties_map = {
|
|
"win19" = {
|
|
publisher = "MicrosoftWindowsServer"
|
|
offer = "WindowsServer"
|
|
sku = "2019-Datacenter"
|
|
os_disk_size_gb = coalesce(var.os_disk_size_gb, 256)
|
|
},
|
|
"win22" = {
|
|
publisher = "MicrosoftWindowsServer"
|
|
offer = "WindowsServer"
|
|
sku = "2022-Datacenter"
|
|
os_disk_size_gb = coalesce(var.os_disk_size_gb, 256)
|
|
},
|
|
"win25" = {
|
|
publisher = "MicrosoftWindowsServer"
|
|
offer = "WindowsServer"
|
|
sku = "2025-Datacenter"
|
|
os_disk_size_gb = coalesce(var.os_disk_size_gb, 150)
|
|
}
|
|
}
|
|
|
|
image_properties = local.image_properties_map[var.image_os]
|
|
}
|