acoustic-truck-53557
07/13/2022, 9:45 PMpulumi 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:
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?