Skip to content

Commit 18d14b7

Browse files
committedJun 3, 2021
pre-commit tf-docs + tf-lint
1 parent 069d4ab commit 18d14b7

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed
 

‎README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ module "terraform-aws-iam-users-groups" {
6161
* [With creation of new IAM groups](https://github.com/evairmarinho/terraform-aws-iam-users-groups/blob/main/examples/with_new_groups.tf)
6262
* [Without creation of new IAM groups](https://github.com/evairmarinho/terraform-aws-iam-users-groups/blob/main/examples/without_new_groups.tf)
6363

64-
**Requirements**
64+
<!-- BEGIN_TF_DOCS -->
65+
## Requirements
6566

6667
| Name | Version |
6768
|------|---------|
@@ -77,19 +78,20 @@ module "terraform-aws-iam-users-groups" {
7778
## Resources
7879

7980
| Name | Type |
80-
| :--- | :--- |
81-
| [aws\_iam\_group.groups](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_group) | resource |
82-
| [aws\_iam\_user.users](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user) | resource |
83-
| [aws\_iam\_user\_group\_membership.user\_to\_groups](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user_group_membership) | resource |
81+
|------|------|
82+
| [aws_iam_group.groups](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_group) | resource |
83+
| [aws_iam_user.users](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user) | resource |
84+
| [aws_iam_user_group_membership.user_to_groups](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user_group_membership) | resource |
8485

8586
## Inputs
8687

8788
| Name | Description | Type | Default | Required |
88-
| :--- | :--- | :--- | :--- | :---: |
89-
| [region](./#input_region) | Region where the resources will be created. | `string` | n/a | yes |
90-
| [create\_groups](./#input_create_groups) | Define if Terraform will create new\_groups based on variable groups. | `bool` | `false` | no |
91-
| [groups](./#input_groups) | List of group names for Terraform create, case create\_groups variable be true | `list(string)` | `[]` | no |
92-
| [users](./#input_users) | Map for Terraform create users. | `map(any)` | `{}` | no |
89+
|------|-------------|------|---------|:--------:|
90+
| <a name="input_region"></a> [region](#input\_region) | Region where the resources will be created. | `string` | n/a | yes |
91+
| <a name="input_create_groups"></a> [create\_groups](#input\_create\_groups) | Define if Terraform will create new\_groups based on variable groups . | `bool` | `false` | no |
92+
| <a name="input_groups"></a> [groups](#input\_groups) | List of group names for Terraform create, case create\_groups variable be true | `list(string)` | `[]` | no |
93+
| <a name="input_users"></a> [users](#input\_users) | Map for Terraform create users. | `map(any)` | `{}` | no |
94+
<!-- END_TF_DOCS -->
9395

9496
### This Terraform documentation was generated by [terraform-docs](https://github.com/terraform-docs/terraform-docs).
9597

‎outputs.tf

Whitespace-only changes.

‎variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ variable "users" {
1919
variable "create_groups" {
2020
type = bool
2121
default = false
22-
description = "Define if Terraform will create new_groups based on variable groups."
23-
}
22+
description = "Define if Terraform will create new_groups based on variable groups ."
23+
}

0 commit comments

Comments
 (0)
Please sign in to comment.