Skip to content

Commit

Permalink
Add descriptions to test environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Jberlinsky committed Dec 19, 2018
1 parent ef03ce9 commit 41a068d
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions test/fixtures/shared/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 41a068d

Please sign in to comment.