Skip to content

Commit

Permalink
Merge pull request #22 from transcend-io/dmattia/jwt_ecsda_key_optional
Browse files Browse the repository at this point in the history
Make the jwt_ecdsa_key variable optional
  • Loading branch information
dmattia authored Jun 30, 2020
2 parents c119798 + d6557d2 commit 9539314
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,6 @@ variable employee_auth_methods {
description = "Supported customer employee authentication methods"
}

variable jwt_ecdsa_key {
description = <<EOF
The JSON Web Token asymmetric key for signing Sombra payloads, using the Elliptic
Curve Digital Signature Algorithm"
EOF
}

variable tls_config {
type = object({
passphrase = string
Expand Down Expand Up @@ -151,6 +144,14 @@ variable use_local_kms {
description = "When true, local KMS will be used. When false, AWS will be used"
}

variable jwt_ecdsa_key {
default = ""
description = <<EOF
The JSON Web Token asymmetric key for signing Sombra payloads, using the Elliptic
Curve Digital Signature Algorithm"
EOF
}

variable internal_key_hash {
default = ""
description = "This will override the generated internal key"
Expand Down

0 comments on commit 9539314

Please sign in to comment.