diff --git a/jobs/deploy-notifications/templates/deploy.sh.erb b/jobs/deploy-notifications/templates/deploy.sh.erb index afb6b85a..1d7bb712 100644 --- a/jobs/deploy-notifications/templates/deploy.sh.erb +++ b/jobs/deploy-notifications/templates/deploy.sh.erb @@ -7,7 +7,7 @@ export CF_DIAL_TIMEOUT=<%= properties.notifications.cf.dial_timeout %> SCHEME=https DOMAIN=<%= properties.domain %> ADMIN_USER=<%= properties.notifications.cf.admin_user %> -ADMIN_PASSWORD=<%= properties.notifications.cf.admin_password %> +ADMIN_PASSWORD="<%= properties.notifications.cf.admin_password %>" API_ENDPOINT=$SCHEME://api.$DOMAIN ORG=<%= properties.notifications.organization %> SPACE=<%= properties.notifications.space %> diff --git a/jobs/destroy-notifications/templates/destroy.sh.erb b/jobs/destroy-notifications/templates/destroy.sh.erb index 5207dc91..3cc1f8ad 100644 --- a/jobs/destroy-notifications/templates/destroy.sh.erb +++ b/jobs/destroy-notifications/templates/destroy.sh.erb @@ -7,7 +7,7 @@ export CF_DIAL_TIMEOUT=<%= properties.notifications.cf.dial_timeout %> SCHEME=https DOMAIN=<%= properties.domain %> ADMIN_USER=<%= properties.notifications.cf.admin_user %> -ADMIN_PASSWORD=<%= properties.notifications.cf.admin_password %> +ADMIN_PASSWORD="<%= properties.notifications.cf.admin_password %>" API_ENDPOINT=$SCHEME://api.$DOMAIN ORG=<%= properties.notifications.organization %> SPACE=<%= properties.notifications.space %> diff --git a/jobs/test-notifications/templates/test.sh.erb b/jobs/test-notifications/templates/test.sh.erb index 17baf518..16de5585 100644 --- a/jobs/test-notifications/templates/test.sh.erb +++ b/jobs/test-notifications/templates/test.sh.erb @@ -10,7 +10,7 @@ export CF_HOME=$HOME/cf export SCHEME=https export DOMAIN=<%= properties.domain %> export CF_ADMIN_USERNAME=<%= properties.notifications.cf.admin_user %> -export CF_ADMIN_PASSWORD=<%= properties.notifications.cf.admin_password %> +export CF_ADMIN_PASSWORD="<%= properties.notifications.cf.admin_password %>" export API_ENDPOINT=$SCHEME://api.$DOMAIN export APP_NAME=notifications export APP_DOMAIN=<%= properties.notifications.app_domain %>