From 8665636e8841efe67684235f8c42f22f3ac3686e Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Mon, 19 Aug 2024 10:57:16 +0200 Subject: [PATCH] Fix casing See gh-41205 --- .../additional-spring-configuration-metadata.json | 4 ++-- .../modules/reference/pages/actuator/endpoints.adoc | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json index d507ce390f..5304c1a536 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -230,7 +230,7 @@ { "name": "management.health.ssl.enabled", "type": "java.lang.Boolean", - "description": "Whether to enable SSL Certificate health check.", + "description": "Whether to enable SSL certificate health check.", "defaultValue": true }, { @@ -292,7 +292,7 @@ { "name": "management.info.ssl.enabled", "type": "java.lang.Boolean", - "description": "Whether to enable SSL Certificate info.", + "description": "Whether to enable SSL certificate info.", "defaultValue": false }, { diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/endpoints.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/endpoints.adoc index c9bd4c7d69..6334c9d66a 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/endpoints.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/endpoints.adoc @@ -651,13 +651,13 @@ with the `key` listed in the following table: | `ssl` | javadoc:org.springframework.boot.actuate.ssl.SslHealthIndicator[] -| Checks that SSL Certificates are ok. +| Checks that SSL certificates are ok. |=== TIP: You can disable them all by setting the configprop:management.health.defaults.enabled[] property. TIP: The `ssl` `HealthIndicator` has a "warning threshold" property named configprop:management.health.ssl.certificate-validity-warning-threshold[]. -If an SSL Certificate will be invalid within the time span defined by this threshold, the `HealthIndicator` will warn you but it will still return HTTP 200 to not disrupt the application. +If an SSL certificate will be invalid within the time span defined by this threshold, the `HealthIndicator` will warn you but it will still return HTTP 200 to not disrupt the application. You can use this threshold to give yourself enough lead time to rotate the soon to be expired certificate. @@ -1122,7 +1122,7 @@ When appropriate, Spring auto-configures the following `InfoContributor` beans: | `ssl` | javadoc:org.springframework.boot.actuate.info.SslInfoContributor[] -| Exposes SSL Certificate information. +| Exposes SSL certificate information. | An xref:features/ssl.adoc#features.ssl.bundles[SSL Bundle] configured. |=== @@ -1243,7 +1243,7 @@ The `info` endpoint publishes information about your process, see javadoc:org.sp [[actuator.endpoints.info.ssl-information]] === SSL Information -The `info` endpoint publishes information about your SSL Certificates (that are configured through xref:features/ssl.adoc#features.ssl.bundles[SSL Bundles]), see javadoc:org.springframework.boot.info.SslInfo[] for more details. This endpoint reuses the "warning threshold" property of javadoc:org.springframework.boot.actuate.ssl.SslHealthIndicator[]: if an SSL Certificate will be invalid within the time span defined by this threshold, it will trigger a warning. See the `management.health.ssl.certificate-validity-warning-threshold` property. +The `info` endpoint publishes information about your SSL certificates (that are configured through xref:features/ssl.adoc#features.ssl.bundles[SSL Bundles]), see javadoc:org.springframework.boot.info.SslInfo[] for more details. This endpoint reuses the "warning threshold" property of javadoc:org.springframework.boot.actuate.ssl.SslHealthIndicator[]: if an SSL certificate will be invalid within the time span defined by this threshold, it will trigger a warning. See the `management.health.ssl.certificate-validity-warning-threshold` property.