Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Serverless NEG type not displayed in Network Endpoint Group Service

Hello Team,

 I am unable to see Serverless NEG type available in Network Endpoint Group service in GCP. I am able to create via terraform but in console its showing URL not found error. I am sure I saw this option last week. Was there any recent change to this service ?

ramkumar1308_1-1681250993109.png

Terraform Code:

resource "google_compute_region_network_endpoint_group" "serverless_neg1" {
  //provider = google-beta
  project         = var.project
  name                  = "my-serverless-neg1"
  network_endpoint_type = "SERVERLESS"
  region                = "us-central1"
  cloud_run {
    service = google_cloud_run_service.service.name
  }
}
 
 

 

Solved Solved
0 1 934
1 ACCEPTED SOLUTION

Howdy.  I had a hunt through Google's docs and came across this link.  In there it says:

> Note: You cannot use the Google Cloud console to set up a regional external HTTP(S) load balancer with a serverless NEG backend.

That tells me that there isn't (currently) the ability to perform the task through the console.  We can perform the task using either API or gcloud ....

However ... having said all that ... I read onwards and read this recipe.  As I read that, I apparently *did* see a wizard that creates a Serverless NEG but that was followed through a wizard that guides us through creating a load balancer.  What this suggests to me is that we are in the process of "adding" some new capabilities and some parts are rolled out and some are still waiting.  This would appear to be the case looking at the latest release notes (2023-04-06).

View solution in original post

1 REPLY 1

Howdy.  I had a hunt through Google's docs and came across this link.  In there it says:

> Note: You cannot use the Google Cloud console to set up a regional external HTTP(S) load balancer with a serverless NEG backend.

That tells me that there isn't (currently) the ability to perform the task through the console.  We can perform the task using either API or gcloud ....

However ... having said all that ... I read onwards and read this recipe.  As I read that, I apparently *did* see a wizard that creates a Serverless NEG but that was followed through a wizard that guides us through creating a load balancer.  What this suggests to me is that we are in the process of "adding" some new capabilities and some parts are rolled out and some are still waiting.  This would appear to be the case looking at the latest release notes (2023-04-06).