terraform/examples/google-two-tier/variables.tf

16 lines
302 B
Terraform
Raw Normal View History

2015-08-02 17:37:52 +02:00
variable "region" {
default = "us-central1"
2015-08-02 17:37:52 +02:00
}
variable "region_zone" {
default = "us-central1-f"
2015-08-02 17:37:52 +02:00
}
variable "project_name" {
description = "The ID of the Google Cloud project"
2015-08-02 17:37:52 +02:00
}
variable "account_file_path" {
description = "Path to the JSON file used to describe your account credentials"
2015-08-02 17:37:52 +02:00
}