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 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"``