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
Copy file name to clipboardExpand all lines: content/operate/rs/references/rest-api/objects/sso.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,12 @@ An API object that represents single sign-on (SSO) configuration in the cluster.
17
17
| control_plane | boolean (default: false) | If `true`, enables single sign-on (SSO) for the control plane. |
18
18
| enforce_control_plane | boolean (default: false) | If `true`, enforce SSO login for the control plane for non-admin users. If `false`, all users can still login using their local username and password if SSO is down. |
19
19
| protocol | "saml2" | SSO protocol to use. |
20
-
| issuer | complex object | Issuer related configuration.<br>Contains the following fields:<br>**id**: Unique ID of the issuer side (example: "urn:sso:example:idp")<br>**login_url**: SSO login URL (example: "https://idp.example.com/sso/saml")<br>**logout_url**: SSO logout URL (example: "https://idp.example.com/sso/slo")|
20
+
| issuer | complex object | Issuer related configuration.<br>Contains the following fields:<br>**id**: Unique ID of the issuer side (example: "urn:sso:example:idp")<br>**login_url**: SSO login URL (example: "https://idp.example.com/sso/saml")<br>**logout_url**: SSO logout URL (example: "https://idp.example.com/sso/slo")<br />**metadata**: Base64 encoded IdP metadata (read-only)|
21
21
| service | complex object | Service related configuration.<br />For SAML2 service configuration:<br />{{<code>}}{
22
+
"address": "string",
22
23
"saml2": {
23
24
"entity_id": "string",
24
25
"acs_url": "string",
25
26
"slo_url": "string"
26
27
}
27
-
}{{</code>}}<br>**acs_url**: Assertion Consumer Service URL (read-only)<br>**slo_url**: Single Logout URL (read-only)<br>**entity_id**: Service entity ID (read-only) |
28
+
}{{</code>}}<br>**address**: External service address used for SSO. By default, the cluster name with the Cluster Manager port is used.<br />**acs_url**: Assertion Consumer Service URL (read-only)<br>**slo_url**: Single Logout URL (read-only)<br>**entity_id**: Service entity ID (read-only) |
Copy file name to clipboardExpand all lines: content/operate/rs/security/access-control/saml-sso.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ To download the service provider's metadata using the Cluster Manager UI:
131
131
To download the service provider's metadata using the REST API, use a [get SAML service provider metadata]({{<relref "/operate/rs/references/rest-api/requests/cluster/sso#get-cluster-sso-saml-metadata">}}) request.
132
132
133
133
```sh
134
-
GET https://<host>:<port>/v1/cluster/sso/saml/metadata
134
+
GET https://<host>:<port>/v1/cluster/sso/saml/metadata/sp
0 commit comments