So I have a RasaX deployment running using docker-compose, I want to set up an external Postgres DB (RDS).
Was able to configure it in a local setup with endpoints.yml file And this works perfectly.
tracker_store:
type: SQL
dialect: "postgresql" # the dialect used to interact with the db
url: "db-db.2323123.us-east-2.rds.amazonaws.com"
db: "postgres" # path to your db
username: "rds_user" # username used for authentication
password: "abcd" # password used for authentication
But was not able to cofigure the docker-compose setup. Have added the below to the .env file.
DB_HOST=ask-db-db.2323123.us-east-2.rds.amazonaws.com
DB_PORT=5432
DB_USER=rds_user
DB_PASSWORD=abcd
DB_DATABASE=postgres
But getting the error as password authentication failed for user “rds_user” Role “rds_user” does not exist.