I'm deploying a simple Python 3 App Engine App (Flexi environment) by issuing following command: gcloud app deploy --version=ver0-1
and getting following error: ERROR: (gcloud.app.deploy) Permissions error fetching application [apps/<PROJECT_NAME>]. Please make sure you are using the correct project ID and that you have permission to view applications on the project.
I can confirm the account and project are correctly setup when I issued following command: gcloud config list
[core]
account = GOOGLE_ACCOUNT_EMAIL_ID
disable_usage_reporting = True
project = PROJECT_NAME_I_WANT_TO_DEPLOY
Your active configuration is: [default]
Is there anything i'm missing on Permissions front? Im GCP Project Owner. Any addition API I need to enable in order to work with App Engine deployment, in Flexi environment
Thanks for any clue!
gcloud auth loginbefore deploying again, and tell us the outcome. - amport