Determine if Postgres is running on AWS RDS
I found 3 ways to check if the current instance of Postgres is running on AWS
select * from pg_settings where name like 'rds.%';
select * from pg_settings where name like 'aurora%';
select spcname from pg_tablespace where spcname like 'aurora%';
Using the first