From 93f2b0093cdcc88c83a1fc2be01945c11243f79e Mon Sep 17 00:00:00 2001 From: Steve Chavez Date: Sat, 7 Oct 2023 19:20:48 -0300 Subject: [PATCH] references: remark NOLOGIN impersonated roles --- docs/references/auth.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/references/auth.rst b/docs/references/auth.rst index 3e7428f2e..740771247 100644 --- a/docs/references/auth.rst +++ b/docs/references/auth.rst @@ -21,6 +21,8 @@ The authenticator role is used for connecting to the database and should be conf CREATE ROLE authenticator LOGIN NOINHERIT NOCREATEDB NOCREATEROLE NOSUPERUSER; + CREATE ROLE anonymous NOLOGIN; + CREATE ROLE webuser NOLOGIN; .. note::