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
The auth provider { $auth } is not defined in the configuration.
2804
+
Verify that the spelling is correct or define { $auth } in the configuration.
2805
+
|Classification
2806
+
m|SECURITY
2807
+
|SeverityLevel
2808
+
m|INFORMATION
2801
2809
|===
2802
2810
2811
+
2803
2812
.Create a user with an auth provider that is not defined in the configuration
2804
-
====
2813
+
[.tabbed-example]
2814
+
=====
2815
+
[.include-with-neo4j-code]
2816
+
======
2805
2817
Command::
2806
2818
+
2807
2819
[source, cypher]
@@ -2816,10 +2828,35 @@ Verify that the spelling is correct or define `unknownProvider` in the configura
2816
2828
Suggestions for improvement::
2817
2829
Make sure that the given provider is correct, or replace it if not.
2818
2830
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`.
2819
-
====
2831
+
======
2832
+
[.include-with-GQLSTATUS-code]
2833
+
======
2834
+
Command::
2835
+
+
2836
+
[source, cypher]
2837
+
----
2838
+
CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
The auth provider `unknownProvider` is not defined in the configuration.
2847
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2848
+
2849
+
Suggestions for improvement::
2850
+
Make sure that the given provider is correct, or replace it if not.
2851
+
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`.
2852
+
======
2853
+
=====
2820
2854
2821
2855
.Alter a user to add an auth provider that is not defined in the configuration
2822
-
====
2856
+
[.tabbed-example]
2857
+
=====
2858
+
[.include-with-neo4j-code]
2859
+
======
2823
2860
Command::
2824
2861
+
2825
2862
[source, cypher]
@@ -2834,28 +2871,62 @@ Verify that the spelling is correct or define `unknownProvider` in the configura
2834
2871
Suggestions for improvement::
2835
2872
Make sure that the given provider is correct, or replace it if not.
2836
2873
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`.
2837
-
====
2874
+
======
2875
+
2876
+
[.include-with-GQLSTATUS-code]
2877
+
======
2878
+
Command::
2879
+
+
2880
+
[source, cypher]
2881
+
----
2882
+
ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
The auth provider `unknownProvider` is not defined in the configuration.
2891
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2892
+
2893
+
Suggestions for improvement::
2894
+
Make sure that the given provider is correct, or replace it if not.
2895
+
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