You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,6 @@ module "aws_iam_user" {
37
37
name = "test"
38
38
force_destroy = true
39
39
pgp_key = "keybase:test" # keybase user name
40
-
owned_by = "example"
41
-
managed_by = "terraform"
42
-
pipeline_id = "123456" # this value is usually generated by your CI tool eg: Circle CI, Travis CI, Gitlab, etc.
43
40
44
41
tags = {
45
42
BusinessUnit = "tools"
@@ -65,18 +62,15 @@ module "aws_iam_user" {
65
62
| create_iam_user_login_profile | Whether to create IAM user login profile. |`bool`|`true`| no |
66
63
| create_user | Whether to create the IAM user. |`bool`|`true`| no |
67
64
| force_destroy | 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. |`bool`|`false`| no |
68
-
| managed_by | The name of the tool that manages the resources. |`string`|`""`| yes |
69
65
| name | Desired name for the IAM user. |`string`|`n/a`| yes |
70
-
| owned_by | The name of the company who owns the resources. |`string`|`""`| yes |
71
66
| password_length | The length of the generated password. |`number`|`20`| no |
72
67
| password_reset_required | Whether the user should be forced to reset the generated password on first login. |`bool`|`true`| no |
73
68
| path | Desired path for the IAM user. |`string`|`"/"`| no |
74
69
| permissions_boundary | The ARN of the policy that is used to set the permissions boundary for the user. |`string`|`""`| no |
75
70
| pgp_key | Either a base-64 encoded PGP public key, or a keybase username in the form `keybase:username`. Used to encrypt password and access key. |`string`|`""`| yes |
76
-
| pipeline_id | The CI pipeline id number. |`number`|`n/a`| no |
77
71
| ssh_key_encoding | Specifies the public key encoding format to use in the response. To retrieve the public key in ssh-rsa format, use SSH. To retrieve the public key in PEM format, use PEM. |`string`|`"SSH"`| no |
78
72
| ssh_public_key | The SSH public key. The public key must be encoded in ssh-rsa format or PEM format. |`string`|`""`| no |
79
-
| tags |Additional tags. |`map(string)`|`{}`| no |
73
+
| tags |A map of tags for the resources. |`map(string)`|`{}`| no |
80
74
| upload_iam_user_ssh_key | Whether to upload a public ssh key to the IAM user. |`bool`|`false`| no |
0 commit comments