You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating auth0_connection with strategy waad (Azure AD) and passing Sync user profile attributes at each login attribute to option, doesn't enable the Toggle on the Azure AD Settings (Authentication -> Enterprise -> Microsoft Azure AD -> Name of the connection -> Settings -> Advanced -> Sync user profile attributes at each login)
Until we manually set "Sync user profile attributes at each login" toggle ON.
Affected Resource(s)
auth0_connection
What was the expected behavior?
Sync user profile attributes at each login toggle should be enabled (Authentication -> Enterprise -> Microsoft Azure AD -> Name of the connection -> Settings -> Advanced -> Sync user profile attributes at each login)
Reproduction
Trying to configure the Azure AD connection using following block, which create the resource, but Sync user profile attributes at each login toggle not ON
Hey @Viru82, appreciate you opening this issue. This is caused by the weird behavior the API has. In order to enable the sync user profile attributes with the email verification we need to ensure the set_user_root_attributes = "on_each_login" is not set in the terraform config. e.g.
Describe the problem
When creating auth0_connection with strategy waad (Azure AD) and passing Sync user profile attributes at each login attribute to option, doesn't enable the Toggle on the Azure AD Settings (Authentication -> Enterprise -> Microsoft Azure AD -> Name of the connection -> Settings -> Advanced -> Sync user profile attributes at each login)
Until we manually set "Sync user profile attributes at each login" toggle ON.
Affected Resource(s)
auth0_connection
What was the expected behavior?
Sync user profile attributes at each login toggle should be enabled (Authentication -> Enterprise -> Microsoft Azure AD -> Name of the connection -> Settings -> Advanced -> Sync user profile attributes at each login)
Reproduction
Trying to configure the Azure AD connection using following block, which create the resource, but Sync user profile attributes at each login toggle not ON
resource "auth0_connection" "azure_ad" {

name = "XYZ"
strategy = "waad"
options {
tenant_domain = "example.com"
domain = "example.com"
client_id = xxxxxx
client_secret = xxxxxxx
set_user_root_attributes = "on_each_login"
should_trust_email_verified_connection = "never_set_emails_as_verified"
}
}
Environment
The text was updated successfully, but these errors were encountered: