improvements: address coderabbit

This commit is contained in:
Scott Wilson
2025-04-03 21:42:59 -07:00
parent e11fdf8f3a
commit cd333a7923
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ description: "Learn how to automatically rotate PostgreSQL credentials."
-- second user
CREATE USER infisical_user_2 WITH ENCRYPTED PASSWORD 'temporary_password';
GRANT CONNECT ON DATABASE my_database TO infisical_role;
GRANT CONNECT ON DATABASE my_database TO infisical_user_2;
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO infisical_user_2;
```