Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
When creating a user resource it would be useful to be able to specify a password. This could be a randomly generated password. How exactly would you get the password after creating a user? (assuming that an admin would have to login and reset the password the way this currently works?)
New or Affected Resource(s)
NA
Potential Terraform Configuration
# Create a new Artifactory user called terraform
resource "artifactory_user" "test-user" {
name = "terraform"
email = "test-user@artifactory-terraform.com"
groups = ["logged-in-users", "readers"]
password = "somerandompassword"
}
Community Note
Description
When creating a user resource it would be useful to be able to specify a password. This could be a randomly generated password. How exactly would you get the password after creating a user? (assuming that an admin would have to login and reset the password the way this currently works?)
New or Affected Resource(s)
NA
Potential Terraform Configuration
References