First, I'm new to Spring Boot Framework. I have been working on actuator for few days now and was able to set up endpoints to monitor the system. How ever when I integrate JWT for the security all my actuator endpoints got broke.
How can I disable JWT security for actuator endpoints which is on top of spring boot security? Following is my application.yml file properties.
management:
  endpoint:
    metrics:
      enabled: true
  endpoints:
    web:
      exposure:
        include: health, metrics