diff options
author | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-04-10 10:32:00 +0200 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-04-10 11:37:50 +0200 |
commit | c138b700030d22ae0bdbd6992fb4a4d8a3431798 (patch) | |
tree | 35926c24ef0eb4c770f3592bedc6e4d3cf69c98e /dpo/spec/hv-ves-collector.componentspec.json | |
parent | d52444107a3c62c1027e35178b76645ceb4d2c4e (diff) |
Read passwords from files
Key- and trust-store passwords should be read from files in order to
work with DCAE tls-init-container.
Change-Id: Ibe454663328268f33f8be25ef9ec129f1ce1d396
Issue-ID: DCAEGEN2-1412
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'dpo/spec/hv-ves-collector.componentspec.json')
-rw-r--r-- | dpo/spec/hv-ves-collector.componentspec.json | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dpo/spec/hv-ves-collector.componentspec.json b/dpo/spec/hv-ves-collector.componentspec.json index 13dd64a3..d88fd285 100644 --- a/dpo/spec/hv-ves-collector.componentspec.json +++ b/dpo/spec/hv-ves-collector.componentspec.json @@ -71,32 +71,32 @@ }, { "name": "security.keys.keyStoreFile", - "value": "/etc/ves-hv/ssl/keystore.p12", + "value": "/etc/ves-hv/ssl/cert.jks", "description": "Points to private key store file", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { - "name": "security.keys.keyStorePassword", - "value": "onaponap", - "description": "Password for the key store", + "name": "security.keys.keyStorePasswordFile", + "value": "/etc/ves-hv/ssl/jks.pass", + "description": "File which contains password for the key store", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { "name": "security.keys.trustStoreFile", - "value": "/etc/ves-hv/ssl/truststore.p12", + "value": "/etc/ves-hv/ssl/trust.jks", "description": "Points to trust store file which contains trusted client certificates and/or CAs", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false }, { - "name": "security.keys.trustStorePassword", - "value": "onaponap", - "description": "Password for the trust store", + "name": "security.keys.trustStorePasswordFile", + "value": "/etc/ves-hv/ssl/trust.pass", + "description": "File which contains password for the trust store", "sourced_at_deployment": false, "policy_editable": false, "designer_editable": false |