terraform-google-lb icon indicating copy to clipboard operation
terraform-google-lb copied to clipboard

Debian 9 > Debian 11

Open rocpoc opened this issue 3 years ago • 0 comments

TL;DR

Debian 9 image is deprecated, which causes the Terraform resources to error out on the apply. Switching to Debian 11 (the newest image) is recommended and fixes this issue.

Updating the variable in the variables.tf file fixes the issue. @zefdelgadillo

Expected behavior

No response

Observed behavior

No response

Terraform Configuration

variable "region" {
  default = "us-central1"
}

variable "project_id" {
  description = "GCP Project used to create resources."
}

variable "image_family" {
  description = "Image used for compute VMs."
  default     = "debian-11"
}

variable "image_project" {
  description = "GCP Project where source image comes from."
  default     = "debian-cloud"
}

Terraform Version

Terraform v1.2.8
on linux_amd64

Additional information

No response

rocpoc avatar Sep 19 '22 20:09 rocpoc