Skip to content

Commit

Permalink
Continuous Integration - terraform fmt and terraform-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zachreborn authored and github-actions[bot] committed Mar 15, 2024
1 parent ad74b48 commit 57ea3c0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modules/aws/iam/group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,24 +99,24 @@ No modules.

| Name | Type |
|------|------|
| [aws_iam_user.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user) | resource |
| [aws_iam_group.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_group) | resource |
| [aws_iam_group_policy_attachment.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_group_policy_attachment) | resource |

## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_force_destroy"></a> [force\_destroy](#input\_force\_destroy) | (Optional, default false) When destroying this user, destroy even if it has non-Terraform-managed IAM access keys, login profile or MFA devices. Without force\_destroy a user with non-Terraform-managed access keys and login profile will fail to be destroyed. | `string` | `false` | no |
| <a name="input_name"></a> [name](#input\_name) | (Required) The user's name. The name must consist of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-\_.. User names are not distinguished by case. For example, you cannot create users named both 'TESTUSER' and 'testuser'. | `string` | n/a | yes |
| <a name="input_path"></a> [path](#input\_path) | (Optional, default '/') Path in which to create the user. | `string` | `"/"` | no |
| <a name="input_permissions_boundary"></a> [permissions\_boundary](#input\_permissions\_boundary) | (Optional) The ARN of the policy that is used to set the permissions boundary for the user. | `string` | `null` | no |
| <a name="input_groups"></a> [groups](#input\_groups) | (Required) - A map of groups to create. The key is the name of the group, and the value is a map of the group configuration. | <pre>map(object({<br> policy_arns = set(string)<br> }))</pre> | n/a | yes |
| <a name="input_policy_arns"></a> [policy\_arns](#input\_policy\_arns) | (Required) - A list of ARNs of the policies which you want attached to the groups. | `set(string)` | n/a | yes |

## Outputs

| Name | Description |
|------|-------------|
| <a name="output_arn"></a> [arn](#output\_arn) | The ARN assigned by AWS for this user. |
| <a name="output_id"></a> [id](#output\_id) | The ID of the user. |
| <a name="output_user_name"></a> [user\_name](#output\_user\_name) | The user's name. |
| <a name="output_arn"></a> [arn](#output\_arn) | The ARN assigned by AWS for this IAM group. |
| <a name="output_id"></a> [id](#output\_id) | The ID of the IAM group. |
| <a name="output_name"></a> [name](#output\_name) | The name of the IAM group. |
| <a name="output_path"></a> [path](#output\_path) | The path of the IAM group in AWS. |
<!-- END_TF_DOCS -->

<!-- LICENSE -->
Expand Down

0 comments on commit 57ea3c0

Please sign in to comment.