It looks like with spring boot 3.5.4 (spring-kafka 3.3.8), the injection/handling of ssl bundles no longer works. Instead, we are now expected to configure the properties (what we believe to be) the old way?
Before (SSL Bundle - broken in 3.5.4):
spring:
ssl:
bundle:
jks:
kafka:
truststore:
location:
password:
type:
kafka:
ssl:
bundle: kafka
```
After (Traditional SSL - working in 3.5.4):
```yaml
spring:
kafka:
ssl:
trust-store-location: file:
trust-store-password:
trust-store-type:
Comment From: philwebb
Looking at the git history we don't appear to have changed anything in this area. Could you please provide a sample that demonstrates the problem?