Skip to content

Commit

Permalink
Allow cf admin password to have spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso committed Nov 23, 2016
1 parent 3c41256 commit 33e0a90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jobs/deploy-notifications/templates/deploy.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
Expand Down
2 changes: 1 addition & 1 deletion jobs/destroy-notifications/templates/destroy.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
Expand Down
2 changes: 1 addition & 1 deletion jobs/test-notifications/templates/test.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
Expand Down

0 comments on commit 33e0a90

Please sign in to comment.