diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-09-05 13:15:52 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-09-05 13:15:52 -0700 |
commit | a4e1bb47a6dd8883bd7033ebbff4f95c5b6279fa (patch) | |
tree | 36d97c29d203a936bf3a19194bd2bd0ed2189cf1 /test/ete/scripts/deploy-onap.sh | |
parent | b2246f534206ccf60245ac51474b7e1f2c31414c (diff) |
Remove plain OpenStack pwd from Heat
Replace plain OpenStack password with its encrypted version
Change-Id: I3afd8c02ce7d004a2817bad69a667edb28982f67
Issue-ID: INT-646
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/ete/scripts/deploy-onap.sh')
-rwxr-xr-x | test/ete/scripts/deploy-onap.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ete/scripts/deploy-onap.sh b/test/ete/scripts/deploy-onap.sh index 2fd05562a..6c8d05d41 100755 --- a/test/ete/scripts/deploy-onap.sh +++ b/test/ete/scripts/deploy-onap.sh @@ -19,6 +19,8 @@ fi source $WORKSPACE/test/ete/scripts/install_openstack_cli.sh +SO_ENCRYPTION_KEY=aa3871669d893c7fb8abbcda31b88b4f +export OS_PASSWORD_ENCRYPTED=$(echo -n "$OS_PASSWORD" | openssl aes-128-ecb -e -K "$SO_ENCRYPTION_KEY" -nosalt | xxd -c 256 -p) DEMO_DIR=${ONAP_WORKDIR}/demo if [ "$#" -ge 2 ]; then |