Merge "Fixing typos and removing notes" into release-1.1.0
[sdc.git] / sdc-os-chef / sdc-backend / chef-repo / cookbooks / sdc-catalog-be / recipes / BE_7_setup_portal_properties.rb
1 template "template portal.properties" do
2     path "/var/lib/jetty/resources/portal.properties"
3     source "BE-portal.properties.erb"
4     owner "jetty"
5     group "jetty"
6     mode "0755"
7     variables ({
8         :ecomp_rest_url      => node['ECompP']['ecomp_rest_url'],
9         :ecomp_redirect_url  => node['ECompP']['ecomp_redirect_url'],
10         :ueb_url_list        => node['ECompP']['ueb_url_list'],
11         :inbox_name          => node['ECompP']['inbox_name'],
12         :app_key             => node['ECompP']['app_key'],
13         :app_secret          => node['ECompP']['app_secret'],
14         :app_topic_name      => node['ECompP']['app_topic_name'],
15                 :decrypt_key         => node['ECompP']['decryption_key']
16     })
17 end