Hello,
In Cas 7.3.0 docs(i.e
here), it is written that you'll need to enable the necessary actutor via these configurations:

To enable and expose an actuator endpoint:
management.endpoint.auditevents.enabled=true
management.endpoints.web.exposure.include=auditevents
# Choose the proper security access level...
# cas.monitor.endpoints.endpoint.auditevents.access=PERMIT
but when i use `management.endpoint.auditevents.enabled=true` i see this error log in my startup:
ERROR [org.springframework.boot.context.properties.migrator.PropertiesMigrationListener] - <
The use of configuration keys that are no longer supported was found in the environment:
Property source 'bootstrapProperties-CasJdbcCloudConfigBootstrapAutoConfiguration':
Key: management.endpoint.auditevents.enabled
Reason: Replacement key 'management.endpoint.auditevents.access' uses an incompatible target type
Should i change this:
management.endpoint.auditevents.enabled=true
to this:
management.endpoint.auditevents.access=READ_ONLY (possible values are NONE,READ_ONLY or UNRESTRICTED)
or is there a reason not to use these new changes happened in Spring Boot 3.4+?
Thank you, and have a nice day.
YG