From b4ef55db4ea2fb7da6ed14f222e6e02d38466566 Mon Sep 17 00:00:00 2001 From: Carlos Monastyrski Date: Tue, 15 Jul 2025 21:45:31 -0300 Subject: [PATCH] Minor improvement on the Postgres docs changing a warning to a tip --- docs/integrations/app-connections/postgres.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/integrations/app-connections/postgres.mdx b/docs/integrations/app-connections/postgres.mdx index 1a6ca5969..239608905 100644 --- a/docs/integrations/app-connections/postgres.mdx +++ b/docs/integrations/app-connections/postgres.mdx @@ -30,14 +30,14 @@ Infisical supports connecting to PostgreSQL using a database role. -- enable permissions to alter login credentials ALTER ROLE infisical_role WITH CREATEROLE; ``` - - For each user whose password will be rotated, you must grant that specific user role to your admin user with the ADMIN option: + + In some configurations, the role performing the rotation must be explicitly granted access to manage each user. To do this, grant the user's role to the rotation role with: ```SQL -- grant each user role to admin user for password rotation - GRANT TO WITH ADMIN OPTION; + GRANT TO WITH ADMIN OPTION; ``` - Replace `` with each specific username whose credentials will be rotated, and `` with the role that will perform the rotation. - + Replace `` with each specific username whose credentials will be rotated, and `` with the role that will perform the rotation. +