Minor wording improvement

This commit is contained in:
Carlos Monastyrski
2025-07-15 16:12:16 -03:00
parent c14a431177
commit 948799822f

View File

@@ -34,9 +34,9 @@ Infisical supports connecting to PostgreSQL using a database role.
For each user whose password will be rotated, you must grant that specific user role to your admin user with the ADMIN option:
```SQL
-- grant each user role to admin user for password rotation
GRANT <secret-rotation-user> TO <connection-username> WITH ADMIN OPTION;
GRANT <secret-rotation-user> TO <infisical_role> WITH ADMIN OPTION;
```
Replace `<secret-rotation-user>` with each specific username whose credentials will be rotated, and `<connection-username>` with the role that will perform the rotation.
Replace `<secret-rotation-user>` with each specific username whose credentials will be rotated, and `<infisical_role>` with the role that will perform the rotation.
</Warning>
</Tab>
</Tabs>