From b32313c4a485216f24648bd40a533f3d8581b937 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 16 Dec 2021 13:44:09 -0500 Subject: [PATCH] fix --- README.md | 2 +- variables.tf | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c0b1cd1..f1ec66b 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ No modules. | [ldap\_password](#input\_ldap\_password) | LDAP password for ldap\_user for writing data into eDirectory or Active Directory | `string` | `""` | no | | [ldap\_port](#input\_ldap\_port) | LDAP port (default is 389 but also using STARTTLS) | `number` | `389` | no | | [ldap\_user](#input\_ldap\_user) | LDAP user for writing data into eDirectory or Active Directory | `string` | `""` | no | -| [max\_session\_duration](#input\_max\_session\_duration) | n/a | `number` | `3600` | no | +| [max\_session\_duration](#input\_max\_session\_duration) | Override the maximum session duration from the default (3600) | `number` | `3600` | no | | [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component (role, policy). This should be used primarily for common infrastructure things | `map(string)` | `{}` | no | | [role\_description](#input\_role\_description) | Role/application description | `string` | `""` | no | | [role\_name](#input\_role\_name) | Role/application name without prefix | `string` | n/a | yes | diff --git a/variables.tf b/variables.tf index fcc3376..8baae5f 100644 --- a/variables.tf +++ b/variables.tf @@ -52,9 +52,9 @@ variable "instance_profile_path" { } variable "max_session_duration" { - descriptio = "Override the maximum session duration from the default (3600)" - type = number - default = 3600 + description = "Override the maximum session duration from the default (3600)" + type = number + default = 3600 } variable "component_tags" {