Skip to content

Commit

Permalink
mark sensitive fields
Browse files Browse the repository at this point in the history
  • Loading branch information
elimt committed Dec 11, 2024
1 parent 21eb030 commit eed5fbf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions enos/modules/test_e2e_docker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,14 @@ variable "test_timeout" {
variable "gcp_private_key_id" {
description = "ID of the private key used to authenticate with GCP"
type = string
sensitive = true
default = ""
}

variable "gcp_private_key" {
description = "Private key used to authenticate with GCP"
type = string
sensitive = true
default = ""
}

Expand All @@ -255,12 +257,14 @@ variable "gcp_zone" {
variable "gcp_target_ssh_key" {
description = "SSH key used to authenticate with GCP target"
type = string
sensitive = true
default = ""
}

variable "gcp_client_email" {
description = "GCP client email associated with the private key"
type = string
sensitive = true
default = ""
}

Expand Down

0 comments on commit eed5fbf

Please sign in to comment.