We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f914daf commit 5b884aaCopy full SHA for 5b884aa
content/integrate/redis-data-integration/data-pipelines/prepare-dbs/mongodb.md
@@ -47,8 +47,10 @@ db.createUser({
47
user: "rdi_user",
48
pwd: "rdi_password",
49
roles: [
50
- { role: "read", db: "your_database" }, // You can have multiple read roles. One per database.
51
- // { role: "readAnyDatabase", db: "admin" }, // Use this role if you don't want to give `read` role for each database.
+ // You can have multiple read roles, one per database.
+ { role: "read", db: "your_database" },
52
+ // Use the role below if you don't want to grant the `read` role for each database.
53
+ // { role: "readAnyDatabase", db: "admin" },
54
{ role: "clusterMonitor", db: "admin" }
55
]
56
});
0 commit comments