Django password decryption

I want to use my django user details including password(hashed) to create a new user in aws using api call. i want to pass the password field which is mandatory to create account with aws. But due to the password hashed i can’t able to use that. Is this possible to retrive/decrypt the django user password ?? If yes please guide how to do else please tell is there any alternative way to do this. Thanks in advance…

No it is not possible to retrieve the original password from the hash.

If you’re going to create the new AWS user when the user registers, you have the password when it’s submitted on the form - can you create the AWS user at that time?

Are you creating AWS users for people to log on directly to AWS, or are they going to be accessing AWS through your application? If the latter, there are some other options.

Ken