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.
1256
+
Verify that the spelling is correct or define `<provider>` in the configuration.
1257
+
|Severity
1258
+
m|INFORMATION
1259
+
|Category
1260
+
m|SECURITY
1261
+
|===
1262
+
1263
+
.Create a user with an auth provider that isn't defined in config
1264
+
====
1265
+
Command::
1266
+
+
1267
+
[source, cypher]
1268
+
----
1269
+
CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
1270
+
----
1271
+
1272
+
Description of the returned code::
1273
+
The auth provider `unknownProvider` is not defined in the configuration.
1274
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
1275
+
1276
+
Suggestions for improvement::
1277
+
Make sure that the given provider is correct, or replace it if not.
1278
+
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`.
1279
+
====
1280
+
1281
+
.Alter a user to add an auth provider that isn't defined in config
1282
+
====
1283
+
Command::
1284
+
+
1285
+
[source, cypher]
1286
+
----
1287
+
ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
1288
+
----
1289
+
1290
+
Description of the returned code::
1291
+
The auth provider `unknownProvider` is not defined in the configuration.
1292
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
1293
+
1294
+
Suggestions for improvement::
1295
+
Make sure that the given provider is correct, or replace it if not.
1296
+
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