Spring Boot - Actuator
Given this Spring Security config snippet, what will be the access behavior for the /actuator/health endpoint?
http
.authorizeHttpRequests()
.requestMatchers("/actuator/health").permitAll()
.requestMatchers("/actuator/**").authenticated()