Newer
Older
variable "sshPublicKeyPath" {
type = string
description = "Path to the public part of the SSH key pair"
default = "../.ssh/operator.pub"
}
variable "gcpCredentialsFilePath" {
type = string
description = "Path to a GCP credentials file (e.g., service account key)"
default = "~/.gcp/keyfile.json"
}
variable "projectID" {
type = string
description = "ID of a project within GCP"
default = "bht-devops24-ss"
}
variable "zone" {
type = string
description = "GCP zone to deploy resources in"
default = "europe-west3-b"
}