Hello GCP Community,
I'm facing a critical issue that's impacting my company's email processing system. I'm unable to create a VPC serverless connector, which is causing our cloud function (triggered by Pub/Sub for Gmail updates) to fail. Here are the details:
1. Error message: "Create VPC connector "default" (europe-west1)"
2. Region: europe-west1
3. Previous situation: Had an existing connector, deleted it last Friday
4. Current problem: Cannot create a new connector to replace the deleted one
I've already reached out to Brazilian support, but they were unable to resolve the issue or even find the root cause. This problem is severely affecting our business operations and reputation.
Has anyone encountered a similar issue or can provide guidance on how to troubleshoot this? Any help would be greatly appreciated as this is blocking our critical email processing workflow.
Thank you in advance for your assistance.
Hi @Emailright,
Welcome to Google Cloud Community!
Connector creation can fail for several reasons. You may want to review the activity logs in your Cloud Logging Audit logs, this can give you further information why the creation failed. You can use this code to filter and quickly review the error:
log_id("cloudaudit.googleapis.com/activity")
protoPayload.serviceName="vpcaccess.googleapis.com"
protoPayload.methodName="google.cloud.vpcaccess.v1.VpcAccessService.CreateConnector"
You could try these troubleshooting steps to see if they help resolve the problem:
log_id("cloudaudit.googleapis.com/activity")
protoPayload.serviceName="compute.googleapis.com"
protoPayload.methodName="v1.compute.subnetworks.insert"
protoPayload.authenticationInfo.principalEmail="[PROJECTNUMBER]@cloudservices.gserviceaccount.com" "conflicts with existing subnetwork" OR "networks cannot overlap with 10.128.0.0/9"
If the workarounds above don't work, you can contact Google Cloud Support for a more in-depth analysis. When contacting them, please provide comprehensive details and include screenshots. This will help them better understand and address your issue.
I hope the above information is helpful