I have a cloudsql instance Im not sure who created or when.
How can I see when a cloudsql instance was created so I can know how old it is? I see nothing in the UI with created date or anything like that.
I have a cloudsql instance Im not sure who created or when.
How can I see when a cloudsql instance was created so I can know how old it is? I see nothing in the UI with created date or anything like that.
If you click on 'Operations' in the left CloudSQL menu, it should have a list of all operations your database instance is currently running and has completed, the very first on should be of type "Create" and should have a timestamp.
UPD:
you can also try to get this info with gcloud command:
gcloud sql operations list --instance <instance_name> --filter='operationType=CREATE'