What problem are you facing?
I have run into a issue when working with this provider and AWS Aurora PostgreSQL RDS. Since the aurora_admin role does not have the roles a normal postgres admin does, I have had to create a role and use that to create a database.
Recently database creation has been failing because my database creation role does not have CREATE right to the default TABLESPACE pg_default.
How could Crossplane help solve your problem?
The work around for the above is to run
GRANT CREATE ON TABLESPACE pg_default TO <role>
This is not supported at the moment by the GRANT resource type.
Can we add support for GRANT ON TABLESPACE to the GRANT resource type please
What problem are you facing?
I have run into a issue when working with this provider and AWS Aurora PostgreSQL RDS. Since the aurora_admin role does not have the roles a normal postgres admin does, I have had to create a role and use that to create a database.
Recently database creation has been failing because my database creation role does not have CREATE right to the default TABLESPACE pg_default.
How could Crossplane help solve your problem?
The work around for the above is to run
This is not supported at the moment by the GRANT resource type.
Can we add support for GRANT ON TABLESPACE to the GRANT resource type please