eager-room-52651
01/13/2022, 3:00 PMvpc_network = gcp.compute.Network(config["name"],
opts=pulumi.ResourceOptions(depends_on=[gcp_project, service_apis]),
auto_create_subnetworks=config["autoCreateSubnet"],
delete_default_routes_on_create=config["deleteDefaultRoutes"],
project=gcp_project.name,
routing_mode="GLOBAL")
gcp:compute:Network (test-vpc):
error: 1 error occurred:
* Error creating Network: googleapi: Error 404: The resource 'projects/bngo-e9554a9' was not found, notFound
projects/
is causing issues. if log into the gcp console, the project bngo-e9554a9
existswitty-candle-66007
01/13/2022, 3:16 PMprojects/
bit causing the issue. I think the project_id
property contains the bngo-e9554a9
part which is what that project
input is looking for.eager-room-52651
01/13/2022, 3:23 PM