How to import auth0 tenant configuration using terraform-auth0-provider

I am setting up Terraform with Auth0 to automate my tenant configuration management. My tenant already has many clients, actions and rules that I would like to import to Terraform so that I can manage these as well. I know that I can import specific resources, such as a client, using

terraform import auth0_client.my_client CLIENT_ID

However, is it possible to mass import all the clients at once, or possibly even the entire tenant? Importing my existing clients one at a time would be very time-consuming.

1 Like

having similar use case, have you solved it?