From 41a068d96069a7aa51965057b084cff089bbf548 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..0982c40787 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 = "The relative path from the fixture directory to the GCP credentials file that will run Terraform tests" +} -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" +}