Skip to content

Commit

Permalink
Merge pull request #369 from egvimo/fix/health-check
Browse files Browse the repository at this point in the history
Add missing security matcher for health endpoint
  • Loading branch information
sendilkumarn authored Jan 28, 2023
2 parents 4f3e2cd + adc6e10 commit db7a386
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ class SecurityConfiguration(
.pathMatchers("/services/**").authenticated()
<%_ } _%>
.pathMatchers("/management/health").permitAll()
.pathMatchers("/management/health/**").permitAll()
.pathMatchers("/management/info").permitAll()
.pathMatchers("/management/prometheus").permitAll()
.pathMatchers("/management/**").hasAuthority(ADMIN)
Expand Down

0 comments on commit db7a386

Please sign in to comment.