]
Darran Lofthouse moved WFLY-8195 to WFCORE-2480:
------------------------------------------------
Project: WildFly Core (was: WildFly)
Key: WFCORE-2480 (was: WFLY-8195)
Component/s: Security
(was: Security)
CS tool, provide way to create empty credential store
-----------------------------------------------------
Key: WFCORE-2480
URL:
https://issues.jboss.org/browse/WFCORE-2480
Project: WildFly Core
Issue Type: Bug
Components: Security
Reporter: Martin Choma
Assignee: Darran Lofthouse
Labels: credential-store, wildfly-elytron-tool
There is no way to create empty credential store. Curently credential store can be
created only with adding alias as well.
{code}
java -jar wildfly-elytron-tool.jar credential-store --add myalias --secret
supersecretpassword --location="test.store" --uri
"cr-store://test?modifiable=true;create=true;keyStoreType=JCEKS" --password
mycspassword --salt 12345678 --iteration 230 --summary
{code}
I would expect something like
{code}
java -jar wildfly-elytron-tool.jar credential-store --create
--location="test.store" --uri
"cr-store://test?modifiable=true;create=true;keyStoreType=JCEKS" --password
mycspassword
{code}