From f6ca3a7f54883aa80d9f4b7009985aad7ff3123f Mon Sep 17 00:00:00 2001 From: Jason Berlinsky Date: Tue, 18 Dec 2018 21:40:40 -0500 Subject: [PATCH] Add descriptions to test environment variables --- test/fixtures/shared/variables.tf | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) 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" +}