Skip to content

Commit 8665636

Browse files
committed
Fix casing
See gh-41205
1 parent 819e9aa commit 8665636

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
{
231231
"name": "management.health.ssl.enabled",
232232
"type": "java.lang.Boolean",
233-
"description": "Whether to enable SSL Certificate health check.",
233+
"description": "Whether to enable SSL certificate health check.",
234234
"defaultValue": true
235235
},
236236
{
@@ -292,7 +292,7 @@
292292
{
293293
"name": "management.info.ssl.enabled",
294294
"type": "java.lang.Boolean",
295-
"description": "Whether to enable SSL Certificate info.",
295+
"description": "Whether to enable SSL certificate info.",
296296
"defaultValue": false
297297
},
298298
{

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/endpoints.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -651,13 +651,13 @@ with the `key` listed in the following table:
651651

652652
| `ssl`
653653
| javadoc:org.springframework.boot.actuate.ssl.SslHealthIndicator[]
654-
| Checks that SSL Certificates are ok.
654+
| Checks that SSL certificates are ok.
655655
|===
656656

657657
TIP: You can disable them all by setting the configprop:management.health.defaults.enabled[] property.
658658

659659
TIP: The `ssl` `HealthIndicator` has a "warning threshold" property named configprop:management.health.ssl.certificate-validity-warning-threshold[].
660-
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.
660+
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.
661661
You can use this threshold to give yourself enough lead time to rotate the soon to be expired certificate.
662662

663663

@@ -1122,7 +1122,7 @@ When appropriate, Spring auto-configures the following `InfoContributor` beans:
11221122

11231123
| `ssl`
11241124
| javadoc:org.springframework.boot.actuate.info.SslInfoContributor[]
1125-
| Exposes SSL Certificate information.
1125+
| Exposes SSL certificate information.
11261126
| An xref:features/ssl.adoc#features.ssl.bundles[SSL Bundle] configured.
11271127

11281128
|===
@@ -1243,7 +1243,7 @@ The `info` endpoint publishes information about your process, see javadoc:org.sp
12431243
[[actuator.endpoints.info.ssl-information]]
12441244
=== SSL Information
12451245

1246-
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.
1246+
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.
12471247

12481248

12491249

0 commit comments

Comments
 (0)