mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
20 lines
487 B
HCL
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."
|
|
}
|