Skip to content

DOCS-12054: audit event replSetReconfig #3456

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 8, 2018
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion source/includes/options-mongo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,8 @@ args: <string>
description: |

Disables the specified TLS protocols. The option recognizes the
following protocols: ``TLS1_0``, ``TLS1_1``, and ``TLS1_2``:
following protocols: ``TLS1_0``, ``TLS1_1``, ``TLS1_2``, and
starting in version 4.0.4 (and 3.6.9), ``TLS1_3``.

- On macOS, you cannot disable ``TLS1_1`` and leave both ``TLS1_0`` and
``TLS1_2`` enabled. You must also disable at least one of the other
Expand Down
4 changes: 2 additions & 2 deletions source/includes/options-mongod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1575,7 +1575,7 @@ description: |
specify multiple protocols, use a comma separated list of protocols.

{{role}} recognizes the following protocols: ``TLS1_0``, ``TLS1_1``,
and ``TLS1_2``.
``TLS1_2``, and starting in version 4.0.4 (and 3.6.9), ``TLS1_3``.

- On macOS, you cannot disable ``TLS1_1`` and leave both ``TLS1_0`` and
``TLS1_2`` enabled. You must disable at least one of the other
Expand All @@ -1592,7 +1592,7 @@ description: |

Starting in version 4.0, MongoDB disables the use of TLS 1.0 if TLS
1.1+ is available on the system. To enable the disabled TLS 1.0,
specify ``none`` to {{role}}. 4.0-disable-tls
specify ``none`` to {{role}}. See :ref:`4.0-disable-tls`.

Members of replica sets and sharded clusters must speak at least one
protocol in common.
Expand Down
32 changes: 29 additions & 3 deletions source/reference/audit-message.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ associated ``param`` details and the ``result`` values, if any.
args: <command object>
}

``ns`` field is optional.

``args`` field may be redacted.
| ``ns`` field is optional.
| ``args`` field may be redacted.

- | ``0`` - Success
| ``13`` - Unauthorized to perform the operation.
Expand Down Expand Up @@ -457,6 +456,33 @@ associated ``param`` details and the ``result`` values, if any.

- ``0`` - Success

* - ``replSetReconfig``

- .. code-block:: none
:copyable: false

{
old: {
_id: <replicaSetName>,
version: <number>,
...
members: [ ... ],
settings: { ... }
},
new: {
_id: <replicaSetName>,
version: <number>,
...
members: [ ... ],
settings: { ... }
}
}

For details on the replica set configuration document, see
:doc:`/reference/replica-configuration`.

- ``0`` - Success

* - :authaction:`enableSharding`

- .. code-block:: none
Expand Down