Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions source/includes/minimum-destination-privileges.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
.. list-table::
:header-rows: 1
:stub-columns: 1
:widths: 10 20

* - Sync Type
- Minimum Destination Privileges

* - Default
- .. code-block:: javascript

[
{
"resource": { "cluster": true },
"actions": [
"appendOplogNote" ,
"enableSharding" ,
"getDefaultRWConcern",
"getShardMap" ,
"hostInfo" ,
"listDatabases" ,
"listShards" ,
"replSetGetConfig" ,
"replSetGetStatus" ,
"serverStatus"
]
},
{
"resource": { "db": "", "collection": "" },
"actions": [
"bypassDocumentValidation",
"changeStream" ,
"collMod" ,
"convertToCapped" ,
"createCollection" ,
"createIndex" ,
"dropCollection" ,
"dropIndex" ,
"enableSharding" ,
"find" ,
"indexStats" ,
"insert" ,
"listCollections" ,
"listIndexes" ,
"remove" ,
"renameCollectionSameDB" ,
"update" ,
"bypassWriteBlockingMode" ,
"setUserWriteBlockMode"
]
},
{
"resource": { "db": "admin", "collection": "system.version" },
"actions": [ "find" ]
},
{
"resource": { "db": "", "collection": "system.js" },
"actions": [ "listCollections", "listIndexes" ]
},
{
"resource": { "db": "config", "collection": "shards" },
"actions": [ "find" ]
},
{
"resource": { "db": "", "collection": "system.views" },
"actions": [ "dropCollection" ]
},
{
"resource": { "db": "config", "collection": "version" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "collections" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "settings" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "tags" },
"actions": [ "find" ]
},
{
"resource": { "system_buckets": "" },
"actions": [ "listCollections", "listIndexes" ]
}
]

* - Write Blocking
- Everything from the default destination privileges

* - Reversing
- Everything from the default source privileges and the default destination
privileges with the addition of:

.. code-block:: javascript
[
{ "resource": { "db": "", "collection": "" }, "actions": [ "dropDatabase" ] }
]

* - Multiple Reversals
- Everything from the default source privileges and the default destination
privileges with the addition of:

.. code-block:: javascript
[
{ "resource": { "db": "", "collection": "" }, "actions": [ "dropDatabase" ] }
]

151 changes: 151 additions & 0 deletions source/includes/minimum-source-privileges.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
.. list-table::
:header-rows: 1
:stub-columns: 1
:widths: 10 30

* - Sync Type
- Minimum Source Privileges

* - Default
- .. code-block:: javascript

[
{
"resource": { "cluster": true },
"actions": [
"appendOplogNote" ,
"getDefaultRWConcern",
"getShardMap" ,
"hostInfo" ,
"listDatabases" ,
"listShards" ,
"replSetGetConfig" ,
"replSetGetStatus" ,
"serverStatus"
]
},
{
"resource": { "db": "", "collection": "" },
"actions": [
"changeStream" ,
"collStats" ,
"find" ,
"indexStats" ,
"listCollections",
"listIndexes"
]
},
{
"resource": { "db": "admin", "collection": "system.version" },
"actions": [ "find" ]
},
{
"resource": { "db": "", "collection": "system.js" },
"actions": [ "listCollections", "listIndexes" ]
},
{
"resource": { "db": "config", "collection": "shards" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "collections" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "version" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "settings" },
"actions": [ "find" ]
},
{
"resource": { "system_buckets": "" },
"actions": [ "listCollections", "listIndexes" ]
}
]

* - Write-blocking
- Everything from the default source privileges with the addition of:

.. code-block:: javascript
[
{
"resource": { "cluster": true },
"actions": [ "bypassWriteBlockingMode", "setUserWriteBlockMode" ]
}
]

* - Reversing
- Everything from the default source privileges and the default destination
privileges.

* - Multiple Reversals
- Everything from the default source privileges and the default destination
privileges with the addition of:

.. code-block:: javascript
[
{ "resource": { "db": "", "collection": "" }, "actions": [ "dropDatabase" ] }
]

* - V4.4 Migration (insert footnote)
- .. code-block:: javascript

[
{
"resource": { "cluster": true },
"actions": [
"addShard" ,
"appendOplogNote" ,
"flushRouterConfig" ,
"getDefaultRWConcern",
"getShardMap" ,
"hostInfo" ,
"listDatabases" ,
"listShards" ,
"replSetGetConfig" ,
"replSetGetStatus" ,
"serverStatus"
]
},
{
"resource": { "db": "", "collection": "" },
"actions": [
"changeStream" ,
"collStats" ,
"find" ,
"indexStats" ,
"listCollections",
"listIndexes"
]
},
{
"resource": { "db": "admin", "collection": "system.version" },
"actions": [ "find" ]
},
{
"resource": { "db": "", "collection": "system.js" },
"actions": [ "listCollections", "listIndexes" ]
},
{
"resource": { "db": "config", "collection": "shards" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "collections" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "version" },
"actions": [ "find" ]
},
{
"resource": { "db": "config", "collection": "settings" },
"actions": [ "find" ]
}
]


14 changes: 14 additions & 0 deletions source/reference/permissions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@ The Atlas permissions are:

.. include:: /includes/table-permissions-atlas.rst

.. _c2c-minimum-privileges:

Minimum Privileges
------------------

The minimum source privileges are:

.. include:: /includes/minimum-source-privileges.rst

The minimum destination privileges are:

.. include:: /includes/minimum-destination-privileges.rst


.. _c2c-older-version-permissions:

Pre-6.0 Migrations
Expand Down