terraform-provider-google/examples/cloud-armor/variables.tf
Chris Stephens 93a8d9ce27 Adding a Cloud Armor example
This example shows how to build a network with a simple back end that
can be black/white listed by ip address.
2018-08-14 14:37:11 -07:00

17 lines
343 B
HCL

variable "region" {
default = "us-west1"
}
variable "region_zone" {
default = "us-west1-a"
}
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"
}