Earlier we were using Password Vault where after vault creation, substitution for the keystore password was simple.
keystore-password simply had this field - “${VAULT::abcVault::xyzKeystorePass::1}”
Now we are moving to Credential Store, after store creation using elytron tool command, I am unable to figure out how this will replace the keystore-password field within the security-realm tag.
My hosts.xml Security realm looks something like below:
<security-realm name="xxxRealm">
<server-identities>
<ssl>
<keystore path="${abc}/keystore/xyz.keystore" keystore-password="abcdef" alias="abcz" key-password="xyzxx"/>
</ssl>
</server-identities>
<authentication>
<truststore path="
${abc}/keystore/xyz.keystore " keystore-password="
abcdef "/>
</authentication>
</security-realm>