From 4f21005bed0a1df2e02d51cf19963a4f34a9da25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geir=20Ove=20Gr=C3=B8nmo?= Date: Thu, 12 Jun 2025 10:09:51 +0200 Subject: [PATCH 1/2] IS-17631: Added sslmode to mysql system --- .../systems/configuration-systems-mysql.rst | 8 ++++++++ .../systems/configuration-systems-postgresql.rst | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/hub/documentation/service-configuration/systems/configuration-systems-mysql.rst b/hub/documentation/service-configuration/systems/configuration-systems-mysql.rst index f107e7f434..3ba0dffbf0 100644 --- a/hub/documentation/service-configuration/systems/configuration-systems-mysql.rst +++ b/hub/documentation/service-configuration/systems/configuration-systems-mysql.rst @@ -67,6 +67,14 @@ Properties - - Yes + * - ``sslmode`` + - String + - The ssl mode to use. The value has to be one of "disabled", "preferred", or "required". + Please consult the `MySQL documentation `_ for + the full details of what these modes entail. + - ``"preferred"`` + - + Example configuration ^^^^^^^^^^^^^^^^^^^^^ diff --git a/hub/documentation/service-configuration/systems/configuration-systems-postgresql.rst b/hub/documentation/service-configuration/systems/configuration-systems-postgresql.rst index eca0d1e99f..3a34e2b735 100644 --- a/hub/documentation/service-configuration/systems/configuration-systems-postgresql.rst +++ b/hub/documentation/service-configuration/systems/configuration-systems-postgresql.rst @@ -69,7 +69,7 @@ Properties * - ``sslmode`` - String - - The ssl mode to use. The value has to be one of "disable", "allow", "prefer", "require", "verify-ca" or "verify-full". + - The ssl mode to use. The value has to be one of "disable", "allow", "prefer", or "require". Please consult the `PostgreSQL documentation `_ for the full details of what these modes entail. - ``"prefer"`` From 15fe5c0f156acc84e6782b28ca1ba485071722b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geir=20Ove=20Gr=C3=B8nmo?= Date: Fri, 13 Jun 2025 13:40:55 +0200 Subject: [PATCH 2/2] IS-17631: Updated changelog with mysql sslmode --- hub/changelog.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hub/changelog.rst b/hub/changelog.rst index 25c20ee3be..2ee5aaa5fc 100644 --- a/hub/changelog.rst +++ b/hub/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +.. _changelog_2025-06-16: + +2025-06-16 +---------- +* Added the ``sslmode`` property to the :ref:`MySQL system `. + .. _changelog_2025-04-22: 2025-04-22