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
a|The auth provider `<provider>` is not defined in the configuration.
2741
+
Verify that the spelling is correct or define `<provider>` in the configuration.
2742
+
|Severity
2743
+
m|INFORMATION
2744
+
|Category
2745
+
m|SECURITY
2746
+
|===
2747
+
2748
+
.Create a user with an auth provider that is not defined in the configuration
2749
+
====
2750
+
Command::
2751
+
+
2752
+
[source, cypher]
2753
+
----
2754
+
CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
2755
+
----
2756
+
2757
+
Description of the returned code::
2758
+
The auth provider `unknownProvider` is not defined in the configuration.
2759
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2760
+
2761
+
Suggestions for improvement::
2762
+
Make sure that the given provider is correct, or replace it if not.
2763
+
If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`.
2764
+
====
2765
+
2766
+
.Alter a user to add an auth provider that is not defined in the configuration
2767
+
====
2768
+
Command::
2769
+
+
2770
+
[source, cypher]
2771
+
----
2772
+
ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
2773
+
----
2774
+
2775
+
Description of the returned code::
2776
+
The auth provider `unknownProvider` is not defined in the configuration.
2777
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2778
+
2779
+
Suggestions for improvement::
2780
+
Make sure that the given provider is correct, or replace it if not.
2781
+
If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`.
0 commit comments