summaryrefslogtreecommitdiff
path: root/docs/howto/config.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/howto/config.rst')
-rw-r--r--docs/howto/config.rst36
1 files changed, 35 insertions, 1 deletions
diff --git a/docs/howto/config.rst b/docs/howto/config.rst
index 70bd1bd5..6e2bb635 100644
--- a/docs/howto/config.rst
+++ b/docs/howto/config.rst
@@ -536,10 +536,26 @@ Example::
}
+name_id_policy_format
+"""""""""""""""""""""
+
+A string value that will be used to set the ``Format`` attribute of the
+``<NameIDPolicy>`` element of an ``<AuthnRequest>``.
+
+Example::
+
+ "service": {
+ "sp": {
+ "name_id_policy_format": "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent",
+ }
+ }
+
+
name_id_format_allow_create
"""""""""""""""""""""""""""
-Enable AllowCreate in NameIDPolicy.
+A boolean value (``True`` or ``False``) that will be used to set the ``AllowCreate``
+attribute of the ``<NameIDPolicy>`` element of an ``<AuthnRequest>``.
Example::
@@ -550,6 +566,24 @@ Example::
}
+name_id_format
+""""""""""""""
+
+A list of string values that will be used to set the ``<NameIDFormat>`` element of the
+metadata of an entity.
+
+Example::
+
+ "service": {
+ "idp": {
+ "name_id_format": [
+ "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent",
+ "urn:oasis:names:tc:SAML:2.0:nameid-format:transient",
+ ]
+ }
+ }
+
+
allow_unsolicited
"""""""""""""""""