Versions Compared

Key

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

...

Only users with role ROLE_ACTUATOR can actuator can access endpoints. To add a user, follow these steps:

  1. Add the following configuration properties to application.ymluser with a ROLE_actuator role to maintenance-users.properties. This will add user with username "blueriq" and password "welcome" and assign the role ROLE_ACTUATOR actuator to it.

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

How to call endpoints

Info

Currently, only the /health endpoint is enabled.

...