Skip to content

Commit 9c7cace

Browse files
committed
tmp
1 parent f7e8474 commit 9c7cace

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
grant usage on schema vault to postgres with grant option;
2-
grant select on vault.secrets, vault.decrypted_secrets to postgres with grant option;
2+
grant select, delete on vault.secrets, vault.decrypted_secrets to postgres with grant option;
33
grant execute on function vault.create_secret, vault.update_secret, vault._crypto_aead_det_decrypt to postgres with grant option;

ansible/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ postgres_major:
88

99
# Full version strings for each major version
1010
postgres_release:
11-
postgresorioledb-17: "17.0.1.021-orioledb-vault-6"
12-
postgres15: "15.8.1.031-vault-6"
11+
postgresorioledb-17: "17.0.1.021-orioledb-vault-7"
12+
postgres15: "15.8.1.031-vault-7"
1313

1414
# Non Postgres Extensions
1515
pgbouncer_release: "1.19.0"

migrations/db/migrations/20221207154255_create_vault.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BEGIN
99
-- for some reason extension custom scripts aren't run during AMI build, so
1010
-- we manually run it here
1111
grant usage on schema vault to postgres with grant option;
12-
grant select on vault.secrets, vault.decrypted_secrets to postgres with grant option;
12+
grant select, delete on vault.secrets, vault.decrypted_secrets to postgres with grant option;
1313
grant execute on function vault.create_secret, vault.update_secret, vault._crypto_aead_det_decrypt to postgres with grant option;
1414
END IF;
1515
END $$;

0 commit comments

Comments
 (0)