From 476d227f32fe895f461aa93c4cc13344657b7207 Mon Sep 17 00:00:00 2001 From: Chris Williams Date: Wed, 23 Feb 2022 00:29:23 -0500 Subject: [PATCH] fix: Typo in var.custom_role_trust_policy desc --- modules/iam-assumable-role/README.md | 2 +- modules/iam-assumable-role/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/iam-assumable-role/README.md b/modules/iam-assumable-role/README.md index 079a75d6..6abefffa 100644 --- a/modules/iam-assumable-role/README.md +++ b/modules/iam-assumable-role/README.md @@ -46,7 +46,7 @@ No modules. | [create\_instance\_profile](#input\_create\_instance\_profile) | Whether to create an instance profile | `bool` | `false` | no | | [create\_role](#input\_create\_role) | Whether to create a role | `bool` | `false` | no | | [custom\_role\_policy\_arns](#input\_custom\_role\_policy\_arns) | List of ARNs of IAM policies to attach to IAM role | `list(string)` | `[]` | no | -| [custom\_role\_trust\_policy](#input\_custom\_role\_trust\_policy) | A custorm role trust policy | `string` | `""` | no | +| [custom\_role\_trust\_policy](#input\_custom\_role\_trust\_policy) | A custom role trust policy | `string` | `""` | no | | [force\_detach\_policies](#input\_force\_detach\_policies) | Whether policies should be detached from this role when destroying | `bool` | `false` | no | | [max\_session\_duration](#input\_max\_session\_duration) | Maximum CLI/API session duration in seconds between 3600 and 43200 | `number` | `3600` | no | | [mfa\_age](#input\_mfa\_age) | Max age of valid MFA (in seconds) for roles which require MFA | `number` | `86400` | no | diff --git a/modules/iam-assumable-role/variables.tf b/modules/iam-assumable-role/variables.tf index b29eac6b..a74d339d 100644 --- a/modules/iam-assumable-role/variables.tf +++ b/modules/iam-assumable-role/variables.tf @@ -77,7 +77,7 @@ variable "custom_role_policy_arns" { } variable "custom_role_trust_policy" { - description = "A custorm role trust policy" + description = "A custom role trust policy" type = string default = "" }