You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Google Network module with Project Factory, when I try destroy all resources I receive following errors.
.............................
module.host_project01.google_project_service.project_services: Destruction complete after 14smodule.host-project01-network.google_compute_subnetwork.subnetwork.0: Still destroying... (ID:
europe-west2/subnet-01, 30s elapsed)module.host-project01-network.google_compute_subnetwork.subnetwork.1: Still destroying... (ID:
europe-west2/subnet-02, 30s elapsed)module.host-project01-network.google_compute_subnetwork.subnetwork.2: Still destroying... (ID:
europe-west2/subnet-03, 30s elapsed)module.host-project01-network.google_compute_subnetwork.subnetwork.3: Still destroying... (ID:
europe-west2/subnet-04, 30s elapsed)
Error: Error applying plan:
4 error(s) occurred:
* module.host-project01-network.google_compute_subnetwork.subnetwork[1] (destroy): 1 error(s) occurred:
* google_compute_subnetwork.subnetwork.1: Error waiting for Deleting Subnetwork: googleapi: Error 403: Access Not Configured. Compute Engine API has not been used in project 3324343423423423 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/compute.googleapis.com/overview?project=3324343423423423 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry., accessNotConfigured* module.host-project01-network.google_compute_subnetwork.subnetwork[2] (destroy): 1 error(s) occurred:
* google_compute_subnetwork.subnetwork.2: Error waiting for Deleting Subnetwork: googleapi: Error 403: Access Not Configured. Compute Engine API has not been used in project 3324343423423423
before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/compute.googleapis.com/overview?project=3324343423423423 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry., accessNotConfigured* module.host-project01-network.google_compute_subnetwork.subnetwork[3] (destroy): 1 error(s) occurred:
Following "module.host_project01.google_project_service.project_services" resource destroy I receive this error.
I expect project_id = "${module.host_project01.project_id}" line to create an implicit dependency between network and project factory modules and Terraform will destroy resources in a suitable order to respect dependencies but it seems doesn't work.
The text was updated successfully, but these errors were encountered:
This is probably best addressed as an update to project-factory. I suspect the underling issue is that ${module.host_project01.project_id} doesn't depend on the API activation in project factory.
I use Google Network module with Project Factory, when I try destroy all resources I receive following errors.
Following "module.host_project01.google_project_service.project_services" resource destroy I receive this error.
My templates contains following resources,
I expect project_id = "${module.host_project01.project_id}" line to create an implicit dependency between network and project factory modules and Terraform will destroy resources in a suitable order to respect dependencies but it seems doesn't work.
The text was updated successfully, but these errors were encountered: