mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 07:03:16 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
37 lines
897 B
HCL
37 lines
897 B
HCL
variable "region" {
|
|
default = "us-central1"
|
|
}
|
|
|
|
variable "region_zone" {
|
|
default = "us-central1-f"
|
|
}
|
|
|
|
variable "project_name" {
|
|
description = "The ID of the Google Cloud project"
|
|
}
|
|
|
|
variable "credentials_file_path" {
|
|
description = "Path to the JSON file used to describe your account credentials"
|
|
default = "~/.gcloud/Terraform.json"
|
|
}
|
|
|
|
variable "public_key_path" {
|
|
description = "Path to file containing public key"
|
|
default = "~/.ssh/gcloud_id_rsa.pub"
|
|
}
|
|
|
|
variable "private_key_path" {
|
|
description = "Path to file containing private key"
|
|
default = "~/.ssh/gcloud_id_rsa"
|
|
}
|
|
|
|
variable "install_script_src_path" {
|
|
description = "Path to install script within this repository"
|
|
default = "scripts/install.sh"
|
|
}
|
|
|
|
variable "install_script_dest_path" {
|
|
description = "Path to put the install script on each destination resource"
|
|
default = "/tmp/install.sh"
|
|
}
|