terraform-provider-google/examples/endpoints-on-compute-engine/variables.tf
Nathan McKinley 9d3e64cdaf
Add cloud endpoints resource (#933)
OpenAPI & gRPC Endpoints on Compute Engine.

New Resource:
- Endpoints Service Create/Read/Delete
- Example terraform config
2018-01-24 13:03:57 -08:00

21 lines
427 B
HCL

variable "region" {
default = "us-central1"
}
variable "region_zone" {
default = "us-central1-f"
}
variable "org_id" {
description = "The ID of the Google Cloud Organization."
}
variable "billing_account_id" {
description = "The ID of the associated billing account (optional)."
}
variable "credentials_file_path" {
description = "Location of the credentials to use."
default = "~/.gcloud/Terraform.json"
}