You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. The injected credentials file must be named as follows: `redisconnect_credentials_<job_name>`. This filename will be leveraged in the JVM options: `REDISCONNECT_JAVA_OPTIONS`.
4
5
6
+
2. The following role (or similar) is required in Vault for Redis Connect to connect with the source database:
7
+
```
8
+
vault write database/roles/redis-connect \
9
+
db_name=aws-postgres \
10
+
creation_statements="CREATE ROLE \"{{name}}\" WITH REPLICATION LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; \
11
+
GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\"; \
0 commit comments