I'm new to postgres. I created a postgres amazon RDS database. after creation I connected to instance via the "postgres" login and the master password I supplied while creating the RDS.
I'm trying to run this command
CREATE ROLE ohdsi_admin
CREATEDB REPLICATION
VALID UNTIL 'infinity';
COMMENT ON ROLE ohdsi_admin
IS 'Administration group for OHDSI applications';
Getting this error: ERROR: must be superuser to create replication users SQL state: 42501
But to my understanding I'm super user now, with weak privilages (cause of RDS) How can I make the above command to work ?