27 lines
605 B
HCL
27 lines
605 B
HCL
variable "project_id" {
|
|
description = "The Google Cloud project ID"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The Google Cloud region"
|
|
type = string
|
|
default = "us-central1"
|
|
}
|
|
|
|
variable "zone" {
|
|
description = "The Google Cloud zone"
|
|
type = string
|
|
default = "us-central1-a"
|
|
}
|
|
|
|
variable "storage_bucket_name" {
|
|
description = "The name of the Cloud Storage bucket"
|
|
type = string
|
|
}
|
|
|
|
variable "firestore_db_name" {
|
|
description = "The name of the Firestore database"
|
|
type = string
|
|
default = "imagedb"
|
|
} |