From d265e185c3868202d44690d76e1b578f19b5148f Mon Sep 17 00:00:00 2001 From: "r.bogacki" Date: Wed, 14 Aug 2019 09:04:26 +0200 Subject: HTTPS calls for catalog-be Implement HTTPS calls into catalog-be -Added p12 keystore certificate. -Updated application configuration. -Added trust-store. Issue-ID: SDC-2501 Signed-off-by: Robert Bogacki Change-Id: Iecdff1010f763489395e9d67d3a0cecd22d09c88 --- .../cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes') diff --git a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb index e540b34d26..cb2ffc7154 100644 --- a/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb +++ b/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb @@ -7,15 +7,15 @@ directory "Jetty_etcdir_creation" do action :create end -cookbook_file "#{ENV['JETTY_BASE']}/etc/keystore" do - source "keystore" +cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.p12" do + source "org.onap.sdc.p12" owner "jetty" group "jetty" mode 0755 end -cookbook_file "#{ENV['JETTY_BASE']}/etc/truststore" do - source "truststore" +cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.trust.jks" do + source "org.onap.sdc.trust.jks" owner "jetty" group "jetty" mode 0755 -- cgit 1.2.3-korg