I am using Micronaut 4.3.2, and it doesn't seem to be able to read application.yml file as default, only application.properties. Is there a setting somewhere to enable that?
Doesn't seems like anyone else is running into that issue.
Add YAML support to your build. In Micronaut 4, Snakeyaml is an optional dependency.
runtimeOnly("org.yaml:snakeyaml")