I'm trying to convert the following yaml configuration for SAML2 security to and equivalent properties file.
spring:
security:
saml2:
relyingparty:
registration:
xyz:
signing:
credentials:
- certificate-location: "classpath:saml/xyz.pem"
private-key-location: "classpath:saml/xyz.key"
identityprovider:
entity-id: xyz
sso-url: xyz.com
verification:
credentials:
- certificate-location: "classpath:saml/xyz.pem"
It contains lists and it's not obvious how to convert it to properties. I couldn't find much online about it.
This portion of the config file configures the following class:
org.springframework.boot.autoconfigure.security.saml2.Saml2RelyingPartyProperties
From the spring-boot-autoconfigure-2.2.5.RELEASE.jar.