2015-08-02 17:37:52 +02:00
|
|
|
variable "region" {
|
2015-08-31 10:19:02 +02:00
|
|
|
default = "us-central1"
|
2015-08-02 17:37:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "region_zone" {
|
2015-08-31 10:19:02 +02:00
|
|
|
default = "us-central1-f"
|
2015-08-02 17:37:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "project_name" {
|
2015-08-31 10:19:02 +02:00
|
|
|
description = "The ID of the Google Cloud project"
|
2015-08-02 17:37:52 +02:00
|
|
|
}
|
|
|
|
|
2016-03-29 23:18:54 +02:00
|
|
|
variable "credentials_file_path" {
|
2015-08-31 10:19:02 +02:00
|
|
|
description = "Path to the JSON file used to describe your account credentials"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "~/.gcloud/Terraform.json"
|
2016-03-29 23:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "public_key_path" {
|
|
|
|
description = "Path to file containing public key"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "~/.ssh/gcloud_id_rsa.pub"
|
2016-03-29 23:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "private_key_path" {
|
|
|
|
description = "Path to file containing private key"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "~/.ssh/gcloud_id_rsa"
|
2016-03-29 23:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "install_script_src_path" {
|
|
|
|
description = "Path to install script within this repository"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "scripts/install.sh"
|
2016-03-29 23:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "install_script_dest_path" {
|
|
|
|
description = "Path to put the install script on each destination resource"
|
2016-09-22 13:49:09 +02:00
|
|
|
default = "/tmp/install.sh"
|
2015-08-02 17:37:52 +02:00
|
|
|
}
|