Document new authnLevel options for issuer services (#2124)

Moo
Maxime Besson 5 years ago
parent cb43b27904
commit 953e39817d
  1. 6
      doc/pages/manager-api/index.html
  2. 2
      doc/sources/admin/idpcas.rst
  3. 3
      doc/sources/admin/idpopenidconnect.rst
  4. 4
      doc/sources/admin/idpsaml.rst
  5. 4
      doc/sources/manager-api/openapi-spec.yaml

@ -868,6 +868,9 @@
"allowOffline" : { "allowOffline" : {
"type" : "boolean" "type" : "boolean"
}, },
"authnLevel" : {
"type" : "integer"
},
"rule" : { "rule" : {
"type" : "string" "type" : "string"
}, },
@ -1057,6 +1060,9 @@
"type" : "integer", "type" : "integer",
"default" : 72000 "default" : 72000
}, },
"authnLevel" : {
"type" : "integer"
},
"rule" : { "rule" : {
"type" : "string" "type" : "string"
}, },

@ -109,6 +109,8 @@ Options
application. application.
- **User attribute** : session field that will be used as main - **User attribute** : session field that will be used as main
identifier. identifier.
- **Authentication Level** : required authentication level to access this
application
- **Rule** : The access control rule to enforce on this application. If - **Rule** : The access control rule to enforce on this application. If
left blank, access will be allowed for everyone. left blank, access will be allowed for everyone.

@ -268,7 +268,8 @@ Options
https://openid.net/specs/openid-connect-core-1_0.html#OfflineAccess https://openid.net/specs/openid-connect-core-1_0.html#OfflineAccess
for details. These offline sessions can be administered through for details. These offline sessions can be administered through
the Session Browser. the Session Browser.
- **Allow OAuth2.0 Password Grant** (since version ``2.0.8``) Allow the use of the Resource Owner Password Credentials Grant on by this client. This feature only works if you have configured a form-based authentication module. - **Allow OAuth2.0 Password Grant** (since version ``2.0.8``): Allow the use of the Resource Owner Password Credentials Grant on by this client. This feature only works if you have configured a form-based authentication module.
- **Authentication Level**: required authentication level to access this application
- **Access Rule**: lets you specify a :doc:`Perl rule<rules_examples>` to restrict access to this client - **Access Rule**: lets you specify a :doc:`Perl rule<rules_examples>` to restrict access to this client
- **Logout** - **Logout**

@ -162,10 +162,12 @@ These options override service signature options (see
Security Security
'''''''' ''''''''
- **Encryption mode**: set the encryption mode for this IDP (None, - **Encryption mode**: set the encryption mode for this SP (None,
NameID or Assertion). NameID or Assertion).
- **Enable use of IDP initiated URL**: set to ``On`` to enable IDP - **Enable use of IDP initiated URL**: set to ``On`` to enable IDP
Initiated URL on this SP. Initiated URL on this SP.
- **Authentication Level**: required authentication level to access this SP
- **Access Rule**: lets you specify a :doc:`Perl rule<rules_examples>` to restrict access to this SP
.. tip:: .. tip::

@ -1098,6 +1098,8 @@ components:
notOnOrAfterTimeout: notOnOrAfterTimeout:
type: integer type: integer
default: 72000 default: 72000
authnLevel:
type: integer
rule: rule:
type: string type: string
forceUTF8: forceUTF8:
@ -1181,6 +1183,8 @@ components:
type: string type: string
allowOffline: allowOffline:
type: boolean type: boolean
authnLevel:
type: integer
rule: rule:
type: string type: string
IDTokenSignAlg: IDTokenSignAlg:

Loading…
Cancel
Save