diff --git a/docs/databases/mongo-db.md b/docs/databases/mongo-db.md index 809db6a..1ca98f9 100644 --- a/docs/databases/mongo-db.md +++ b/docs/databases/mongo-db.md @@ -426,8 +426,6 @@ Client Authentication Mechanisms: - **LADP**: Lightweight Directory Access Protocol (Enterprise Only) - **KERBEROS** (Enterprise Only) -Cluster Authentication Mechanism: - ### Authorization: Role Based Access Control (RBAC) Each user has one or more **Roles**. Each role has one or more **Privileges**. @@ -438,7 +436,7 @@ This is the "localhost exception" and it closes after the _first_ user is create > **Warn**: Always create an admin user first (ideally with the `userAdmin` role) -Role's Resources: +Role's **Resources**: - specific database and collection: `{ "db": "", "collection": "" }` - all databases and collections: `{ "db": "", "collection": "" }` @@ -446,7 +444,7 @@ Role's Resources: - specific database and any collection: `{ "db": "", "collection": "" }` - cluster resource: `{ "cluster": true }` -Role's Privileges: `{ resource: { }, actions: [ "" ] }` +Role's **Privileges**: `{ resource: { }, actions: [ "" ] }` A role can _inherit_ from multiple others and can define **network restrictions** such as _Server Address_ and _Client Source_. @@ -459,19 +457,46 @@ Built-in Roles Groups and Names: - Super User: `root` ```sh linenums="1" -db.createUser( - { - user: "", - pwd: "", - roles: [ { role: "", db: "" } ] - } -) +db.createUser({ + user: "", + pwd: "", + roles: [ { role: "", db: "" } ] +}) + +db.createRole({ + role: "", + privileges: [ + { resource: { cluster: true }, actions: [ "", ... ] }, + { + resource: { + db: "", + collection: "" + }, + actions: [ "", ... ] + }, + ], + roles: [ + { role: "", db: "" } # inherited permissions + ] +}) # add role to existing user -db.grantRolesToUser( "", [ { db: "", role: "" } ] ) +db.grantRolesToUser( + "", + [ + { + role: "" + db: "", + collection: "", + } + ] +) -# show role privilege -db.runCommand( { rolesInfo: { db: "", role: "" }, showPrivileges: true } ) +# show role privileges +db.runCommand({ + rolesInfo: { db: "", role: "" }, + showPrivileges: true +}) ``` ### [Replica set](https://docs.mongodb.com/manual/replication/)