gitops/iac-template/terraform-hcl-standard/gcp-cloud/modules/ami_lookup/main.tf
2025-11-20 21:37:34 +08:00

22 lines
454 B
HCL

variable "family" {
description = "Image family to lookup"
type = string
default = "debian-12"
}
variable "project" {
description = "Project hosting the image"
type = string
default = "debian-cloud"
}
data "google_compute_image" "family" {
family = var.family
project = var.project
}
output "image" {
value = data.google_compute_image.family.self_link
description = "Self link of the resolved image"
}