I'm using PostgreSQL version 17 and I'm not seeing the cloudsql.enable_anon flag to enable.
I tried to check creating another instance on another version and it was available. So my question is: is this a bug or is it a work in progress feature? If it is something that will be implemented, is there a possible release date?
Hi @elfpileggi,
According to the Supported Flags documentation, cloudsql.enable_anon
is supported and specific to Cloud SQL. Have you tried checking the current value of the cloudsql.enable_anon
flag using the psql
client? If not, you can view all the current PostgreSQL settings on your instance by running this command:
SELECT name, setting FROM pg_settings;
You might also want to try setting the flag through the gcloud console by following the steps provided here.
Was this helpful? If so, please accept this answer as “Solution”. If you need additional assistance, reply here within 2 business days and I’ll be happy to help.