Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
add correct database name for credhub
Browse files Browse the repository at this point in the history
Signed-off-by: JT Archie <jarchie@pivotal.io>
  • Loading branch information
kcboyle authored and JT Archie committed Dec 13, 2018
1 parent c29e4f0 commit d4850c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-pcf/aws/tasks/prepare-rds/task.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GRANT ALL ON locket.* TO '$DB_LOCKET_USERNAME'@'%';
CREATE DATABASE IF NOT EXISTS credhub;
CREATE USER IF NOT EXISTS '$DB_CREDHUB_USERNAME' IDENTIFIED BY '$DB_CREDHUB_PASSWORD';
GRANT ALL ON locket.* TO '$DB_CREDHUB_USERNAME'@'%';
GRANT ALL ON credhub.* TO '$DB_CREDHUB_USERNAME'@'%';
CREATE DATABASE IF NOT EXISTS silk;
CREATE USER IF NOT EXISTS '$DB_SILK_USERNAME' IDENTIFIED BY '$DB_SILK_PASSWORD';
Expand Down

0 comments on commit d4850c0

Please sign in to comment.