This commit is contained in:
Stephane Nicoll 2017-09-13 11:34:59 +02:00
parent 4670cc7795
commit 82fd18cee3
2 changed files with 2 additions and 8 deletions

View File

@ -2,7 +2,7 @@
{ {
"name": "endpoints.configprops.keys-to-sanitize", "name": "endpoints.configprops.keys-to-sanitize",
"type": "java.lang.String[]", "type": "java.lang.String[]",
"sourceType": "org.springframework.boot.actuate.endpoint.ConfigurationPropertiesReportEndpoint", "sourceType": "org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint",
"description": "Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.", "description": "Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.",
"defaultValue": [ "defaultValue": [
"password", "password",
@ -34,7 +34,7 @@
{ {
"name": "endpoints.env.keys-to-sanitize", "name": "endpoints.env.keys-to-sanitize",
"type": "java.lang.String[]", "type": "java.lang.String[]",
"sourceType": "org.springframework.boot.actuate.endpoint.EnvironmentEndpoint", "sourceType": "org.springframework.boot.actuate.env.EnvironmentEndpoint",
"description": "Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.", "description": "Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.",
"defaultValue": [ "defaultValue": [
"password", "password",
@ -217,10 +217,6 @@
"description": "Enable the metrics servlet filter.", "description": "Enable the metrics servlet filter.",
"defaultValue": true "defaultValue": true
}, },
{
"name": "management.security.sessions",
"defaultValue": "stateless"
},
{ {
"name": "management.trace.filter.enabled", "name": "management.trace.filter.enabled",
"type": "java.lang.Boolean", "type": "java.lang.Boolean",
@ -943,7 +939,6 @@
"description" : "Comma-separated list of required roles to login to the CRaSH console.", "description" : "Comma-separated list of required roles to login to the CRaSH console.",
"defaultValue" : [ "ACTUATOR" ], "defaultValue" : [ "ACTUATOR" ],
"deprecation" : { "deprecation" : {
"replacement" : "management.security.roles",
"reason" : "CRaSH support is no longer available.", "reason" : "CRaSH support is no longer available.",
"level" : "error" "level" : "error"
} }

View File

@ -1191,7 +1191,6 @@ content into your application; rather pick only the properties that you need.
management.address= # Network address that the management endpoints should bind to. management.address= # Network address that the management endpoints should bind to.
management.context-path= # Management endpoint context-path. For instance `/actuator` management.context-path= # Management endpoint context-path. For instance `/actuator`
management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL. management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL.
management.security.sessions=stateless # Session creating policy to use (always, never, if_required, stateless).
management.ssl.ciphers= # Supported SSL ciphers. Requires a custom management.port. management.ssl.ciphers= # Supported SSL ciphers. Requires a custom management.port.
management.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom management.port. management.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom management.port.
management.ssl.enabled= # Enable SSL support. Requires a custom management.port. management.ssl.enabled= # Enable SSL support. Requires a custom management.port.