From d5eb404ced8306c8d5088b6767c81c7c0296ed06 Mon Sep 17 00:00:00 2001 From: Leo J <153937047+leiicamundi@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:47:06 +0200 Subject: [PATCH] try without superuser --- .helpers/actions/create_aurora_pg_db.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.helpers/actions/create_aurora_pg_db.sh b/.helpers/actions/create_aurora_pg_db.sh index 0a4ae771..c20982d8 100755 --- a/.helpers/actions/create_aurora_pg_db.sh +++ b/.helpers/actions/create_aurora_pg_db.sh @@ -6,7 +6,6 @@ psql postgres -c "DROP DATABASE IF EXISTS \"${PGDATABASE}\";" \ # see https://github.com/camunda/infra-core/tree/opensearch-cluster/camunda-opensearch#user-setup psql postgres -c "CREATE USER \"${PGUSER_IRSA}\" WITH LOGIN;" \ -c "GRANT rds_iam TO \"${PGUSER_IRSA}\";" \ - -c "GRANT rds_superuser TO \"${PGUSER_IRSA}\";" \ -c "GRANT ALL PRIVILEGES ON DATABASE \"${PGDATABASE}\" TO \"${PGUSER_IRSA}\";" psql postgres -c "SELECT aurora_version();" \