Skip to content

kmip certificate selector #3370

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 1 commit into from
Jul 12, 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
43 changes: 43 additions & 0 deletions source/includes/options-conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,30 @@ inherit:
file: options-mongod.yaml
---
program: conf
name: net.ssl.certificateSelector
type: string
directive: setting
replacement:
program: ":binary:`~bin.mongos` or :binary:`~bin.mongod`"
directive: "setting"
inherit:
name: sslCertificateSelector
program: mongod
file: options-mongod.yaml
---
program: conf
name: net.ssl.clusterCertificateSelector
type: string
directive: setting
replacement:
program: ":binary:`~bin.mongos` or :binary:`~bin.mongod`"
directive: "setting"
inherit:
name: sslClusterCertificateSelector
program: mongod
file: options-mongod.yaml
---
program: conf
name: net.ssl.PEMKeyFile
type: string
directive: setting
Expand Down Expand Up @@ -1747,6 +1771,25 @@ description: |

---
program: conf
name: security.kmip.clientCertificateSelector
directive: setting
type: string
description: |

.. versionadded:: 4.0

Specifies the selector and value to search when using Windows or
macOS system certificate store mechanisms for client certificates.

This option must be followed by a key value pair indicated by
<parameter>=<value>. In this case, <parameter> is the name of the
selector.

.. include:: /includes/option-ssl-certificateSelector.rst

.. include:: /includes/fact-enterprise-only-admonition.rst
---
program: conf
name: security.kmip.keyIdentifier
directive: setting
type: string
Expand Down
2 changes: 2 additions & 0 deletions source/reference/configuration-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,8 @@ Key Management Configuration Options

.. include:: /includes/option/setting-conf-security.kmip.clientCertificatePassword.rst

.. include:: /includes/option/setting-conf-security.kmmip.clientCertificateSelector.rst

.. include:: /includes/option/setting-conf-security.kmip.serverCAFile.rst

``security.sasl`` Options
Expand Down
2 changes: 2 additions & 0 deletions source/reference/program/mongod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ Encryption Key Management Options

.. include:: /includes/option/option-mongod-kmipClientCertificatePassword.rst

.. include:: /includes/option/option-mongod-kmipClientCertificateSelector.rst

.. include:: /includes/option/option-mongod-kmipServerCAFile.rst

Text Search Options
Expand Down
10 changes: 7 additions & 3 deletions source/tutorial/configure-ssl-clients.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,17 @@ settings, including:
.. versionadded:: 4.0

- :option:`--sslCertificateSelector <mongo --sslCertificateSelector>` option if you
wish to use the system store for clients running on Mac or Windows.
wish to use the system store for clients running on macOS or Windows.

.. include:: /includes/extracts/mongo-ssl-options-configure.rst

.. include:: /includes/extracts/clients-warning-sslCAFile.rst

For a complete list of the :binary:`~bin.mongo` shell's TLS/SSL settings, see
:ref:`mongo-shell-ssl`.

Using System Stores for Storing Keys and Certificates for Mac and Windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Using System Stores for Storing Keys and Certificates for macOS and Windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. include:: /includes/ssl-trusted-store.rst

Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/configure-ssl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Procedures

.. versionadded:: 4.0

Using System Stores for Storing Keys and Certificates for Mac and Windows
Using System Stores for Storing Keys and Certificates for macOS and Windows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. include:: /includes/ssl-trusted-store.rst
Expand Down