Skip to content

Commit

Permalink
Change management.endpoints.web.exposure.include=* to disable authori…
Browse files Browse the repository at this point in the history
…zation
  • Loading branch information
markpollack committed Nov 6, 2018
1 parent 0c83aa4 commit a9a09ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ protected void deployStream(StreamDefinition stream) {
streamProperties.put("app.*.logging.file", platformHelper.getLogfileName());
streamProperties.put("app.*.endpoints.logfile.sensitive", "false");

// Specific to Boot 2.x applications
streamProperties.put("app.*.management.endpoints.web.exposure.include", "info, health, logfile");
// Specific to Boot 2.x applications, also allows access without authentication
streamProperties.put("app.*.management.endpoints.web.exposure.include", "*");

platformHelper.addDeploymentProperties(stream, streamProperties);

Expand Down

0 comments on commit a9a09ff

Please sign in to comment.