diff --git a/docs/resources/alks_ltk.md b/docs/resources/alks_ltk.md index c194af07..ae4a0be0 100644 --- a/docs/resources/alks_ltk.md +++ b/docs/resources/alks_ltk.md @@ -1,17 +1,17 @@ # Resource: alks_ltk -Creates a long term key user role in AWS. +Creates an iam user with a long term key. ## Example Usage -### ALKS IAM Role Creation +### ALKS IAM User Creation ```hcl resource "alks_ltk" "test_ltk_user" { iam_username = "My_LTK_User_Name" } ``` -### ALKS IAM Role Creation With Tags +### ALKS IAM User Creation With Tags ```hcl resource "alks_ltk" "test_ltk_user" { iam_username = "My_LTK_User_Name" @@ -25,7 +25,7 @@ resource "alks_ltk" "test_ltk_user" { The following arguments are supported: * `iam_username` - (Required) The name of the IAM user to create. This parameter allows a string of characters consisting 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. -* `tags` - (Optional) If present, will add specified tags onto role. +* `tags` - (Optional) If present, will add specified tags onto iam user. * `iam_user_arn` - (Computed) The ARN associated with the LTK user. * `access_key` - (Computed) Generated access key for the LTK user. Note: This is saved in the state file, so please be aware of this. * `secret_key` - (Computed) Generated secret key for the LTK user. Note: This is saved in the state file, so please be aware of this.