| This version is still in development and is not considered stable yet. For the latest stable version, please use Spring Cloud Config 4.3.0! | 
Creating a Key Store for Testing
To create a keystore for testing, you can use a command resembling the following:
$ keytool -genkeypair -alias mytestkey -keyalg RSA \ -dname "CN=Web Server,OU=Unit,O=Organization,L=City,S=State,C=US" \ -keypass changeme -keystore server.jks -storepass letmein
| When using JDK 11 or above you may get the following warning when using the command above.  In this case
you probably want to make sure the keypassandstorepassvalues match. | 
| Different store and key passwords not supported for PKCS12 KeyStores. Ignoring user-specified -keypass value. | 
Put the server.jks file in the classpath (for instance) and then, in
your bootstrap.yml, for the Config Server, create the following settings:
encrypt:
  keyStore:
    location: classpath:/server.jks
    password: letmein
    alias: mytestkey
    secret: changeme