diff options
author | Dan Timoney <dtimoney@att.com> | 2021-02-22 11:20:18 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-02-22 13:56:52 -0500 |
commit | 38d8f5f82c952db34e139488dd7619f620ecc742 (patch) | |
tree | 546e24c91091dccca66180bf0e9c93a1b9ac4f4d /installation/src/main/properties/ansible-adapter.properties | |
parent | 1e1fc55411b7569aae9f550046ca14e5db03d5cb (diff) |
Remove embedded passwords
Updated properties files to use env variables instead of
embedded default passwords.
Change-Id: I7b5a796bbb5d386dda8cba47cbb977ec47838a11
Issue-ID: SDNC-1482
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: d0a86a8593f3832f11198e91c2343db6fad5a1a9
Diffstat (limited to 'installation/src/main/properties/ansible-adapter.properties')
-rw-r--r-- | installation/src/main/properties/ansible-adapter.properties | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installation/src/main/properties/ansible-adapter.properties b/installation/src/main/properties/ansible-adapter.properties index 761758bb..3cc0f28b 100644 --- a/installation/src/main/properties/ansible-adapter.properties +++ b/installation/src/main/properties/ansible-adapter.properties @@ -30,7 +30,7 @@ # Define the name and path of any user-provided configuration (bootstrap) file that can be loaded # to supply configuration options org.onap.appc.bootstrap.file=appc.properties -org.onap.appc.bootstrap.path=${user.home},/opt/opendaylight/current/properties +org.onap.appc.bootstrap.path=${HOME},/opt/opendaylight/current/properties appc.application.name=APPC @@ -44,5 +44,5 @@ org.onap.appc.provider.adaptor.name=org.onap.appc.appc_ansible_adapter # Default truststore path and password org.onap.appc.adapter.ansible.trustStore=/opt/opendaylight/tls-client/mykeystore.js -org.onap.appc.adapter.ansible.trustStore.trustPasswd=changeit +org.onap.appc.adapter.ansible.trustStore.trustPasswd=${ANSIBLE_TRUSTSTORE_PASSWORD} org.onap.appc.adapter.ansible.clientType=TRUST_ALL |