Files
GSP662/modules/backend/variables.tf
gregory hendrickson e9964c2141 commit new all
2023-03-15 11:40:32 -07:00

20 lines
487 B
HCL

variable "project_id" {
type = string
description = "The ID of the Google Cloud project to use for resources."
}
variable "region" {
type = string
description = "The region to create resources in."
}
variable "sa_email" {
type = string
description = "The email address of the service account to associate with the instance."
}
variable "image_name" {
type = string
description = "The name of the image to use for the instance boot disk."
}