From 12811253b1d19417013887c0e90052272e548be1 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 24 Jun 2022 14:39:37 -0400 Subject: [PATCH] update --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7034a5..9c21792 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ No requirements. | [generate\_password](#input\_generate\_password) | Flag to generate\_password upon creation (requires pgp\_key set) | `bool` | `false` | no | | [groups](#input\_groups) | Groups to which the user belongs | `list(string)` | `[]` | no | | [iam\_username](#input\_iam\_username) | AWS username for user (default a-username) | `string` | `""` | no | -| [inline\_policies](#input\_inline\_policies) | List of IAM Policy Document objects to include in this role. Format is {name=name,policy=policy-json} | `list(object({ name = string, policy = string }))` | `[]` | no | +| [inline\_policies](#input\_inline\_policies) | List of IAM Policy Document objects to include in this user. Format is {name=name,policy=policy-json} | `list(object({ name = string, policy = string }))` | `[]` | no | | [path](#input\_path) | IAM path | `string` | `"/"` | no | | [pgp\_key](#input\_pgp\_key) | PGP key used to encrypt access key | `string` | `""` | no | | [pgp\_key\_file](#input\_pgp\_key\_file) | PGP key filename for encrypting the access key (supercedes pgp\_key) | `string` | `""` | no | diff --git a/variables.tf b/variables.tf index b5fbbda..10274f2 100644 --- a/variables.tf +++ b/variables.tf @@ -96,7 +96,7 @@ variable "attached_policies" { } variable "inline_policies" { - description = "List of IAM Policy Document objects to include in this role. Format is {name=name,policy=policy-json}" + description = "List of IAM Policy Document objects to include in this user. Format is {name=name,policy=policy-json}" type = list(object({ name = string, policy = string })) default = [] }