Configuring "OpenID Connect Back-Channel Logout" using "auth0-deploy-cli"

Problem statement

Is it possible to configure “OpenID Connect Back-Channel Logout” using “auth0-deploy-cli”?

Solution

Yes, it is possible to configure this via the deploy-cli. In the YAML file, there are fields for the oidc_backchannel_logout like below when doing an export on an app:

   oidc_backchannel_logout:
     backchannel_logout_initiators:
       mode: all
     backchannel_logout_urls:
       - https://mytestapp.com/backchannellogouttest
   oidc_conformant: true
   oidc_logout:
     backchannel_logout_initiators:
       mode: all
     backchannel_logout_urls:
       - https://mytestapp.com/backchannellogouttest

Do an export of the current application with the configuration to see these fields filled with the current data. Refer to Use as a CLI - Examples.