I have started working with the Auth0 provider and...
# general
a
I have started working with the Auth0 provider and I ran into a problem. I'm trying to configure custom database connection with Auth0. I'm using auth0.Connection. When I run
pulumi up
it says my connection resource was created but I see no update on the Auth0 web ui. When I run
pulumi up
(multiple times) it always ways the plan is to create the "options" on my connection. Even though nothing has changed since the last
pulumi up
. I'm provisioning Connection like this:
Copy code
auth0.Connection(
            f"{name}-connection",
            options=auth0.ConnectionOptionsArgs(
                brute_force_protection=True,
                custom_scripts={"login": login_script},
                debug=True,
                disable_cache=True,
                disable_signup=True,
                import_mode=False,
                name="Database Connection Opts",
                tenant_domain=auth0.get_tenant().domain,
            ),
            strategy="custom",
            enabled_clients=client_ids,
            display_name="Database Connection",
            opts=opts,
        )
Does anyone have any clue what I might be doing wrong?