1# Auto-generated by generate-config.sh 2variable "project_id" { 3 type = string 4 description = "GCP Project ID of the project being used" 5} 6variable "region" { 7 type = string 8 description = "GCP region used to deploy resources" 9 default = "us-central1" # NOTE: Some integration tests have hardcoded this region. 10} 11variable "should_create_redis_network" { 12 type = bool 13 default = false 14 description = "If true, a Redis network will be created if needed during java-redis testing." 15} 16variable "should_create_container_network" { 17 type = bool 18 default = false 19 description = "If true, a container network will be created if needed during java-container testing." 20} 21variable "should_enable_apis_on_apply" { 22 type = bool 23 default = true 24 description = "If true, required APIs for active client libraries will be automatically enabled on apply." 25} 26variable "should_disable_apis_on_destroy" { 27 type = bool 28 default = false 29 description = "If true, any APIs enabled by Terraform during apply will be disabled on destroy." 30} 31variable "zone" { 32 type = string 33 description = "GCP zone used to deploy resources. Must be a zone in the chosen region." 34 default = "us-central1-c" 35} 36