mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 02:46:51 +00:00
Co-authored-by: Shamil Mubarakshin <127750046+shamil-mubarakshin@users.noreply.github.com>
19 lines
572 B
HCL
19 lines
572 B
HCL
locals {
|
|
image_properties_map = {
|
|
"ubuntu22" = {
|
|
publisher = "canonical"
|
|
offer = "0001-com-ubuntu-server-jammy"
|
|
sku = "22_04-lts"
|
|
os_disk_size_gb = coalesce(var.os_disk_size_gb, 75)
|
|
},
|
|
"ubuntu24" = {
|
|
publisher = "canonical"
|
|
offer = "ubuntu-24_04-lts"
|
|
sku = "server-gen1"
|
|
os_disk_size_gb = coalesce(var.os_disk_size_gb, 75)
|
|
}
|
|
}
|
|
|
|
image_properties = local.image_properties_map[var.image_os]
|
|
}
|