diff --git a/deploy/infrastructure/modules/terraform-aws-dss/TFVARS.gen.md b/deploy/infrastructure/modules/terraform-aws-dss/TFVARS.gen.md index 5cf3efd50..5ca48a175 100644 --- a/deploy/infrastructure/modules/terraform-aws-dss/TFVARS.gen.md +++ b/deploy/infrastructure/modules/terraform-aws-dss/TFVARS.gen.md @@ -20,7 +20,7 @@ The following table describes the variables of this terraform module.

Example: dss.example.com

- authorization (object({
'public_key_pem_path': '${optional(string)}',
'jwks': "${optional(object({
'endpoint': '${string}',
'key_id': '${string}'})
)}"})
) + authorization (object({
public_key_pem_path = optional(string),
jwks = optional(object({
endpoint = string,
key_id = string})
)})
)

One of public_key_pem_path or jwks should be provided but not both.