Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try without superuser #210

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .helpers/actions/create_aurora_pg_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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();" \
Expand Down
Loading