A cloud-based identity and access management service for securing user authentication and resource access
I am trying to use login_hint for promptless logout described here But the dev team says the optional claim is coming across as undefined.
Using Terraform provider below against the azure ad application defined in the module here is how I am configuring the login_hint. Should it be assigned to the access token?
azuread_application_optional_claims
id_token {
name = "login_hint"
source = "user"
essential = false
}