bouncer/internal/proxy/director/layer/authn/oidc/layer-options.json
William Petit ee02a666a9
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
Cadoles/bouncer/pipeline/pr-develop This commit looks good
feat: new openid connect authentication layer
2024-05-15 17:02:46 +02:00

76 lines
2.1 KiB
JSON

{
"$id": "https://forge.cadoles.com/cadoles/bouncer/schemas/authn-oidc-layer-options",
"title": "OIDC authentication layer options",
"type": "object",
"properties": {
"oidc": {
"type": "object",
"properties": {
"clientId": {
"type": "string"
},
"clientSecret": {
"type": "string"
},
"issuerURL": {
"type": "string"
},
"postLogoutRedirectURL": {
"type": "string"
},
"scopes": {
"type": "array",
"item": {
"type": "string"
}
},
"authParams": {
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"required": [
"clientId",
"clientSecret",
"issuerURL",
"postLogoutRedirectURL"
]
},
"cookie": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"domain": {
"type": "string"
},
"path": {
"type": "string"
},
"sameSite": {
"type": "string"
},
"httpOnly": {
"type": "boolean"
},
"secure": {
"type": "boolean"
},
"maxAge": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"oidc"
]
}