Solved! Go to Solution.
Hi @SinghPavan,
Welcome to Google Cloud Community!
Permission servicemanagement.services.check denied for the consumer project indicates that there are some required services that are not enabled on the project or there are some required permissions needed to the service account.
To resolve this issue, you can try these solutions:
gcloud projects add-iam-policy-binding PROJECT_NAME \
--member serviceAccount:SERVICE_ACCOUNT \
--role roles/servicemanagement.admin
gcloud projects add-iam-policy-binding PROJECT_NAME \
--member serviceAccount:SERVICE_ACCOUNT \
--role roles/servicemanagement.serviceController
You can visit Cloud Endpoints for Cloud Run for other information and Cloud Endpoints troubleshooting for troubleshooting overview.
I hope the above information is helpful.
Hi @SinghPavan,
Welcome to Google Cloud Community!
Permission servicemanagement.services.check denied for the consumer project indicates that there are some required services that are not enabled on the project or there are some required permissions needed to the service account.
To resolve this issue, you can try these solutions:
gcloud projects add-iam-policy-binding PROJECT_NAME \
--member serviceAccount:SERVICE_ACCOUNT \
--role roles/servicemanagement.admin
gcloud projects add-iam-policy-binding PROJECT_NAME \
--member serviceAccount:SERVICE_ACCOUNT \
--role roles/servicemanagement.serviceController
You can visit Cloud Endpoints for Cloud Run for other information and Cloud Endpoints troubleshooting for troubleshooting overview.
I hope the above information is helpful.