github.com/m3db/m3@v1.5.0/kube/terraform/examples/gcp/variables.tf (about) 1 # --------------------------------------------------------------------------------------------------------------------- 2 # REQUIRED PARAMETERS 3 # These parameters must be supplied when consuming this module. 4 # --------------------------------------------------------------------------------------------------------------------- 5 6 variable "gcp_project_id" { 7 description = "The name of the GCP Project where all resources will be launched." 8 } 9 10 variable "gcp_region" { 11 description = "The region in which all GCP resources will be launched." 12 } 13 14 variable "gcp_instance_type" { 15 description = "The GCP instance type of the Kubernetes cluster nodes." 16 }