google-app-enginegoogle-cloud-platform

Find creation date of Google App Engine project


So I created a project on Google App Engine roughly 2 years ago, but I don't know the exact date anymore. I would like to find that date now, but I'm having no luck with that, I cannot seem to find that information in the new Cloud Platform overview at https://console.cloud.google.com/home/dashboard?project=PROJECTNAME - I am pretty sure it was available in the old app engine overviews somewhere?

Anyhow, my two best friends in such cases could not help me, unfortunately, unless I missed something in which case I am terribly sorry.

So the question remains, how do I find the date of creation of that project? Any input would be appreciated.


Solution

  • You can use the Cloud SDK to do this :)

    gcloud projects describe <YOUR PROJECT ID> 
    

    This includes a bunch of data, including the date. Hope this helps!