From cc8460b8691caf07cd6ffa4ed87d6e08341b1d1f Mon Sep 17 00:00:00 2001 From: MCatherine Date: Sat, 9 Dec 2023 09:27:07 -0800 Subject: [PATCH] fix: #888 add missing access for auth lambda db user (#1074) --- ...V35__grant_auth_lambda_db_user_read_access_to_admin_table.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 server/flyway/sql/V35__grant_auth_lambda_db_user_read_access_to_admin_table.sql diff --git a/server/flyway/sql/V35__grant_auth_lambda_db_user_read_access_to_admin_table.sql b/server/flyway/sql/V35__grant_auth_lambda_db_user_read_access_to_admin_table.sql new file mode 100644 index 000000000..e4ed2831d --- /dev/null +++ b/server/flyway/sql/V35__grant_auth_lambda_db_user_read_access_to_admin_table.sql @@ -0,0 +1 @@ +GRANT SELECT ON app_fam.fam_application_admin TO ${auth_lambda_db_user}; \ No newline at end of file