If security is enabled in application.yml properties, i.e.:
management:
security:
enabled: true
In old springboot 1.2.x, accessing the health endpoint (/health), with/without passing the credential, will return full details of health response.
In springboot 1.3.x, the default behaviour has been changed. Only with passing the credential will return full health details, otherwise only summary (Status only) is returned.
Need to investigate if there is easy way to still be able to get the health details in full (as in springboot 1.2.x) even though not supplying credential?