-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a use case driven guide on using Credential-stores to store passwords #2177
Conversation
:toc: macro | ||
:toc-title: | ||
|
||
WildFly allows the use of credential stores to keep alias for sensitive information, such as, passwords for external services. Credential stores can be used to store different credentials under aliases and use credential-reference to specify them in server configuration. As a result, the credential is no longer visible in clear text. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/alias/aliases
To follow along with this guide you will need: | ||
|
||
* about 10 minutes | ||
* WildFly with credential-store support |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we just say WildFly here?
/subsystem=elytron/key-store=serverKS:add(path=server.keystore, relative-to=jboss.server.config.dir, type=PKCS12, credential-reference={clear-text=secret}) | ||
``` | ||
|
||
When configuring a resource using plaintext password, it is stores in the standalone.xml file as seen below: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/stores/persisted
Preview: https://prarthonapaul.github.io/wildfly-elytron/blog/credential-store-for-passwords
Supersedes: #2120