mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-19 10:31:51 +00:00
22 lines
447 B
Plaintext
22 lines
447 B
Plaintext
---
|
|
title: "Create SAML Configuration"
|
|
api: "POST /api/v1/saml-config"
|
|
description: "Configure SAML SSO."
|
|
---
|
|
|
|
Add SAML identity provider for SSO authentication.
|
|
|
|
## Request Body
|
|
\`\`\`json
|
|
{
|
|
"data": {
|
|
"type": "saml-config",
|
|
"attributes": {
|
|
"entity_id": "https://idp.example.com",
|
|
"sso_url": "https://idp.example.com/sso",
|
|
"x509_cert": "-----BEGIN CERTIFICATE-----\\n...\\n-----END CERTIFICATE-----"
|
|
}
|
|
}
|
|
}
|
|
\`\`\`
|