Allow creation of users without password

Hello, we are implementing the new user creation flow and encountered an issue. From the dashboard, Connection, Policies there is a toggle for Supporting users without a password. This toggle allow us to create passwordless users and then send them the invite link.
Our issue is that we are deploying using terraform and we cannot find a way to do this. Do you know this can be done with terraform?

Hi @vasileios.sarantinos

Welcome to the Auth0 Community!

When using Terraform, you should be able to toggle the Support Users without a password option by using the following parameters inside options:

"options": (
 "password": {
        "enabled": true,
        "api_behavior": "optional" //required if the setting needs to be disabled
      }
}

However, our recommendation would be to create users using a dummy password instead of having them created without a password.

If you have any other questions, let me know!

Kind Regards,
Nik

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.