Skip to content

Commit 2fe4d60

Browse files
committed
Add management.cloudfoundry.* meta-data
Update configuration meta-data and appendix to include `management.cloudfoundry.*` meta-data. See gh-7108
1 parent 18dcf31 commit 2fe4d60

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@
8585
"type": "java.util.Map<java.lang.String,java.lang.Object>",
8686
"description": "Arbitrary properties to add to the info endpoint."
8787
},
88+
{
89+
"name": "management.cloudfoundry.enabled",
90+
"type": "java.lang.Boolean",
91+
"description": "Enable extended Cloud Foundry actuator endpoints.",
92+
"defaultValue": true
93+
},
94+
{
95+
"name": "management.cloudfoundry.skip-ssl-validation",
96+
"type": "java.lang.Boolean",
97+
"description": "Skip SSL verification for Cloud Foundry actuator endpoint security calls.",
98+
"defaultValue": false
99+
},
88100
{
89101
"name": "management.health.cassandra.enabled",
90102
"type": "java.lang.Boolean",

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,6 +1058,8 @@ content into your application; rather pick only the properties that you need.
10581058
management.add-application-context-header=true # Add the "X-Application-Context" HTTP header in each response.
10591059
management.address= # Network address that the management endpoints should bind to.
10601060
management.context-path= # Management endpoint context-path. For instance `/actuator`
1061+
management.cloudfoundry.enabled= # Enable extended Cloud Foundry actuator endpoints
1062+
management.cloudfoundry.skip-ssl-validation= # Skip SSL verification for Cloud Foundry actuator endpoint security calls
10611063
management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
10621064
management.security.enabled=true # Enable security.
10631065
management.security.roles=ACTUATOR # Comma-separated list of roles that can access the management endpoint.

0 commit comments

Comments
 (0)