From 6947ab0be6e1792e236685150fe0ccbff5946719 Mon Sep 17 00:00:00 2001 From: Andika Bahari <38852468+andikabahari@users.noreply.github.com> Date: Mon, 8 Aug 2022 17:04:23 +0700 Subject: [PATCH] Update Debian version on bastion VM Terraform gives error "Could not find image or family debian-cloud/debian-9". It seems that the image version needs to be updated to version 10. --- terraform/bastion.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/bastion.tf b/terraform/bastion.tf index 7ac4a8c..530fc1b 100644 --- a/terraform/bastion.tf +++ b/terraform/bastion.tf @@ -52,7 +52,7 @@ resource "google_compute_instance" "gke-bastion" { // Specify the Operating System Family and version. boot_disk { initialize_params { - image = "debian-cloud/debian-9" + image = "debian-cloud/debian-10" } }