cluster getssoconf

Fetches the cluster-level SSO parameters.

Note these considerations for using cluster getssoconf:
  • You can run the cluster getssoconf command from any node.
  • You must be the fabric manager or infrastructure admin user to run this command.

Syntax

CLI
cluster getssoconf
Usage : fetches the cluster level SSO params

Parameters

Parameter Description
-json Renders the command output in JSON format.

Example

CLI
The following example shows the CLI output without using the -json option:
maprcli cluster getssoconf
clientid    clientsecret                      providername  issuerendpoint
myclient    PrXMbxOzsn3pXTKSZS1zhs8Syi10Wq4u  keycloak      https://<IP_address>:8443/realms/myrealm
The following example shows the CLI output with the -json option:
maprcli cluster getssoconf -json
{
        "timestamp":1695603854136,
        "timeofday":"2023-09-24 06:04:14.136 GMT-0700 PM",
        "status":"OK",
        "total":1,
        "data":[
                {
                        "issuerendpoint":"https://<IP_address>:8443/realms/myrealm",
                        "providername":"keycloak",
                        "clientid":"myclient",
                        "clientsecret":"PrXMbxOzsn3pXTKSZS1zhs8Syi10Wq4u"
                }
        ]
}
REST
N/A