diff --git a/test/fixtures/shared/variables.tf b/test/fixtures/shared/variables.tf index 1a4da7a2b7..b51be4f83c 100644 --- a/test/fixtures/shared/variables.tf +++ b/test/fixtures/shared/variables.tf @@ -14,15 +14,24 @@ * limitations under the License. */ -variable "project_id" {} +variable "project_id" { + description = "The GCP project to use for integration tests" +} -variable "credentials_path_relative" {} +variable "credentials_path_relative" { + description = ... +} -variable "region" {} +variable "region" { + description = "The GCP region to create and test resources in" +} variable "zones" { type = "list" + description = "The GCP zones to create and test resources in, for applicable tests" default = [] } -variable "compute_engine_service_account" {} +variable "compute_engine_service_account" { + description = "The email address of the service account to associate with the GKE cluster" +}