This message was deleted.
# google-cloud
s
This message was deleted.
f
Okay, I was able to work around this by using the gcp classic provider. I just wasn’t clear how to point it at the api gateway. Here’s the code
Copy code
_, err = compute.NewRegionNetworkEndpointGroup(ctx, "redacted-"+ctx.Stack(), &compute.RegionNetworkEndpointGroupArgs{
		Name:                pulumi.String("redacted-" + ctx.Stack()),
		NetworkEndpointType: pulumi.String("SERVERLESS"),
		Region:              pulumi.String(data.Location),
		ServerlessDeployment: &compute.RegionNetworkEndpointGroupServerlessDeploymentArgs{
			Platform: pulumi.String("<http://apigateway.googleapis.com|apigateway.googleapis.com>"),
			Resource: pulumi.String("redacted-" + ctx.Stack()),
		},
	})
🙌 1