Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Add the following configuration properties to application.yml. This will add user with username "blueriq" and password "welcome" and assign him the role ROLE_ACTUATOR to it.

    Code Block
    spring:
      security:
        user:
          name: blueriq
          password: '{noop}welcome'
          roles:
           - ACTUATOR

...

Info

Currently, only /health endpoint is enabled.


Actuator can be called using HTTP protocol:

Make sure to replace replace "{url}" with application domain.

Code Block
GET http://{url}/actuator/health
Authorization: Basic blueriq welcome

...