You can check current status of GCP services at Google Cloud Status Dashboard:
This page provides status information on the services that are part of
Google Cloud Platform. Check back here to view the current status of
the services listed below.
Let's have a look at the cause of the error message you've got: when you create and start VM instance it requests resources like vCPU and memory and if there's not enough resources available in the zone you'll get an error message like this:
The zone 'projects/PROJECT_ID/zones/ZONE_NAME' does not have enough resources available to fulfill the request. Try a different zone, or try again later.
more information available in the documentation:
If you receive a resource error (such as ZONE_RESOURCE_POOL_EXHAUSTED
or ZONE_RESOURCE_POOL_EXHAUSTED_WITH_DETAILS) when requesting new
resources, it means that the zone cannot currently accommodate your
request. This error is due to Compute Engine resource obtainability,
and is not due to your Compute Engine quota.
The reason for this behavior is resource availability which depends from users requests and therefore are dynamic.
There are a few ways to solve it:
- Try to create VM instance at another zone.
- Reserve resources for your VM instances by following documentation to avoid such issue in future:
Create reservations for Virtual Machine (VM) instances in a specific
zone, using custom or predefined machine types, with or without
additional GPUs or local SSDs, to ensure resources are available for
your workloads when you need them. After you create a reservation, you
begin paying for the reserved resources immediately, and they remain
available for your project to use indefinitely, until the reservation
is deleted.
- Wait for a while and try again.
If nothing helped, you can try to contact with Google Sales Team.