Skip to content

Commit

Permalink
Few docs updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Kassouf committed May 4, 2017
1 parent 3f7ea0d commit c48b7fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/source/docs/secrets/databases/mssql.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ $ vault write database/roles/readonly \
db_name=mssql \
creation_statements="CREATE LOGIN [{{name}}] WITH PASSWORD = '{{password}}';\
CREATE USER [{{name}}] FOR LOGIN [{{name}}];\
GRANT SELECT, INSERT, UPDATE, DELETE ON SCHEMA::dbo TO [{{name}}];" \
GRANT SELECT ON SCHEMA::dbo TO [{{name}}];" \
default_ttl="1h" \
max_ttl="24h"
Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/secrets/databases/postgresql.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ configuration:
$ vault write database/config/postgresql \
plugin_name=postgresql-database-plugin \
allowed_roles="readonly" \
connection_url="postgresql://root:root@localhost:5432/postgres"
connection_url="postgresql://root:root@localhost:5432/"
The following warnings were returned from the Vault server:
* Read access to this endpoint should be controlled via ACLs as it will return the connection details as is, including passwords, if any.
Expand Down

0 comments on commit c48b7fa

Please sign in to comment.