Skip to content

Commit 2806f77

Browse files
authored
fix: update vm image to use Ubuntu 24.04 (#278)
Signed-off-by: chjmil <[email protected]>
1 parent 2346612 commit 2806f77

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/google_vm/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ variable "ssh_public_key" {
6565
variable "os_image" {
6666
description = "OS Image to configure the VM with"
6767
type = string
68-
default = "ubuntu-os-cloud/ubuntu-2004-lts" # FAMILY/PROJECT glcoud compute images list
68+
default = "ubuntu-os-cloud/ubuntu-2404-lts-amd64" # FAMILY/PROJECT glcoud compute images list
6969
}
7070

7171

vms.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module "nfs_server" {
2929
tags = var.tags
3030

3131
subnet = local.subnet_names["misc"] // Name or self_link to subnet
32-
os_image = "ubuntu-os-cloud/ubuntu-2004-lts"
32+
os_image = "ubuntu-os-cloud/ubuntu-2404-lts-amd64"
3333

3434
vm_admin = var.nfs_vm_admin
3535
ssh_public_key = local.ssh_public_key
@@ -60,7 +60,7 @@ module "jump_server" {
6060
tags = var.tags
6161

6262
subnet = local.subnet_names["misc"] // Name or self_link to subnet
63-
os_image = "ubuntu-os-cloud/ubuntu-2004-lts"
63+
os_image = "ubuntu-os-cloud/ubuntu-2404-lts-amd64"
6464

6565
vm_admin = var.jump_vm_admin
6666
ssh_public_key = local.ssh_public_key

0 commit comments

Comments
 (0)