hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.28k stars 1.72k forks source link

terraform-provider-google_v5.9.0_x5.exe plugin crashed! #18524

Closed ryarlagadda-wiq closed 2 months ago

ryarlagadda-wiq commented 2 months ago

Community Note

Terraform Version & Provider Version(s)

Terraform vX.X.X on

Affected Resource(s)

  1. google_secret_manager_secret
  2. google_compute_network
  3. google_service_account
  4. google_project_iam_custom_role
  5. google_project_iam_binding
  6. google_storage_bucket
  7. google_bigquery_dataset
  8. google_project_service

Terraform Configuration

terraform {
  required_providers {
    google = {
      source  = "hashicorp/google"
      version = "~> 5.9.0"
    }
  }
}

provider "google" {
  project = var.project
  region  = var.region
  zone    = var.zone
}

resource "google_project_service" "service" {
  project                    = var.project
  for_each                   = toset(var.service_apis)
  service                    = each.key
  disable_on_destroy         = false
  disable_dependent_services = false
}

# create the backend bucket manually and the import statement imports it
import {
  to = module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend
  id = "${var.project}-${var.backend_name_suffix}"

}

module "gcs_remote_backend" {
  source              = "../../modules/gcs_remote_backend"
  project             = var.project
  backend_name_suffix = var.backend_name_suffix
  location            = var.storage_location
}

module "iam" {
  source         = "../../modules/iam"
  project        = var.project
  project_number = var.project_number
  env            = var.env

  # bigquery
  inventory_asset_dataset       = module.bigquery.inventory_asset_dataset
  inventory_data_checks_dataset = module.bigquery.inventory_data_checks_dataset
  inventory_reference_dataset   = module.bigquery.inventory_reference_dataset
  inventory_restricted_dataset =  module.bigquery.inventory_restricted_dataset

  inventory_asset_dataset_members     = var.inventory_asset_dataset_members
  inventory_reference_dataset_members = var.inventory_reference_dataset_members
  inventory_restricted_dataset_members = var.inventory_restricted_dataset_members
}

module "vpc" {
  source  = "../../modules/vpc"
  project = var.project
  env     = var.env
  region  = var.region
}

import {
  to = module.gcs.google_storage_bucket.data_flow_bucket
  id = "${var.project}-data-flow"
}

module "gcs" {
  source   = "../../modules/gcs"
  project  = var.project
  location = var.storage_location
}

module "composer" {
  source          = "../../modules/composer"
  project         = var.project
  env             = var.env
  region          = var.region
  network         = module.vpc.vpc.id
  subnetwork      = module.vpc.subnet_a.id
  service_account = module.iam.composer_service_account.email
  zone            = var.zone
  # scheduler
  composer_scheduler_count      = var.composer_scheduler_count
  composer_scheduler_cpu        = var.composer_scheduler_cpu
  composer_scheduler_memory_gb  = var.composer_scheduler_memory_gb
  composer_scheduler_storage_gb = var.composer_scheduler_storage_gb
  # web server
  composer_web_server_cpu        = var.composer_web_server_cpu
  composer_web_server_memory_gb  = var.composer_web_server_memory_gb
  composer_web_server_storage_gb = var.composer_web_server_storage_gb
  # worker
  composer_worker_cpu        = var.composer_worker_cpu
  composer_worker_max_count  = var.composer_worker_max_count
  composer_worker_memory_gb  = var.composer_worker_memory_gb
  composer_worker_min_count  = var.composer_worker_min_count
  composer_worker_storage_gb = var.composer_worker_storage_gb

  composer_service_agent_role_binding = module.iam.composer_service_agent_role_binding
}

module "secret_manager" {
  source  = "../../modules/secret_manager"
  project = var.project
}

module "nat" {
  source     = "../../modules/nat"
  project    = var.project
  region     = var.region
  network    = module.vpc.vpc.id
  subnetwork = module.vpc.subnet_a.id
}

module "cloud_build" {
  source             = "../../modules/cloud_build"
  project            = var.project
  project_number     = var.project_number
  env                = var.env
  region             = var.region
  service_networking = google_project_service.service["servicenetworking.googleapis.com"]
  git_repo           = var.git_repo
  git_branch         = var.git_branch

  composer_gcs_dag_bucket = module.composer.composer_gcs_dag_bucket
  composer_name           = module.composer.composer_env.name
  dags_yaml               = var.dags_yaml
  var_yaml                = var.var_yaml

  worker_machine_type = var.cloud_build_worker_machine_type
  worker_disk_size_gb = var.cloud_build_worker_disk_size_gb
}

module "vpn" {
  source  = "../../modules/vpn"
  project = var.project

  region = var.region

  gke_vpc                 = module.vpc.vpc
  gke_control_plane_range = var.gke_control_plane_range

  cloud_build_vpc         = module.cloud_build.cloud_build_vpc
  cloud_build_worker_rage = module.cloud_build.cloud_build_worker_rage

}

Debug Output

Plugin did not respond
2024-06-20T21:55:47.795+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.795+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_reference_dataset (expand)" error: Plugin did not respond
2024-06-20T21:55:47.796+0530 [ERROR] vertex "module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member" error: Plugin did not respond
2024-06-20T21:55:47.796+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.796+0530 [ERROR] vertex "module.gcs.google_storage_bucket.availability_inventory_processing (expand)" error: Plugin did not respond
2024-06-20T21:55:47.796+0530 [ERROR] vertex "module.vpc.google_compute_network.vpc_network"
error: Plugin did not respond
2024-06-20T21:55:47.796+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.796+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
module.bigquery.google_bigquery_dataset.inventory_restricted_dataset: Preparing import... [id=inventory_restricted]
2024-06-20T21:55:47.796+0530 [TRACE] dag/walk: upstream of "module.iam.output.composer_service_account_email (expand)" errored, so skipping
2024-06-20T21:55:47.796+0530 [TRACE] dag/walk: upstream of "module.iam.google_service_account_iam_member.service_agent_main_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.796+0530 [TRACE] GRPCProvider: ImportResourceState
2024-06-20T21:55:47.796+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.796+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_bq_admin_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.796+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_compute_engine_service_agent_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.802+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_network_user_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.802+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_admin_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.803+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_service_agent_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.803+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.sa_container_developer_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.803+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_cloud_sql_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.804+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_composer_worker_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.804+0530 [TRACE] dag/walk: upstream of "module.iam.google_service_account_iam_member.service_agent_composer_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.804+0530 [TRACE] dag/walk: upstream of "module.iam.output.composer_service_account (expand)" errored, so skipping
2024-06-20T21:55:47.804+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.sa_container_admin_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.805+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_v2_ext_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.805+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_admin_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.805+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.sa_secret_manager_secret_accessor_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.806+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_load_balancer_admin_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.806+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.composer_sa_compute_network_user_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.806+0530 [ERROR] vertex "module.iam.google_project_iam_member.sa_cloud_build_role_binding" error: Plugin did not respond
2024-06-20T21:55:47.807+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.807+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_p12_key_secret": visit complete, with errors
2024-06-20T21:55:47.807+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.827+0530 [ERROR] plugin.(*GRPCProvider).ImportResourceState: error="rpc
error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.827+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState
to prevRunState for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_key_secret": visit complete, with errors
2024-06-20T21:55:47.832+0530 [ERROR] vertex "module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding" error: Plugin did not respond
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_iam_service_account_user_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_cloud_function_role_binding": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [ERROR] vertex "module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding" error: Plugin did not respond
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_service_account.collibra_service_account": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_reference_dataset (expand)": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.gcs.google_storage_bucket.availability_inventory_processing (expand)": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.vpc.google_compute_network.vpc_network": visit complete, with errors
2024-06-20T21:55:47.832+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
2024-06-20T21:55:47.832+0530 [TRACE] dag/walk: upstream of "module.iam.output.composer_service_agent_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.832+0530 [TRACE] dag/walk: upstream of "module.composer.var.service_account (expand)" errored, so skipping
2024-06-20T21:55:47.832+0530 [TRACE] vertex "module.iam.google_project_iam_member.sa_cloud_build_role_binding": visit complete, with errors
2024-06-20T21:55:47.832+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.832+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.836+0530 [TRACE] readResourceInstanceState: reading state for module.iam.google_project_iam_binding.bigquery_user_role_binding
2024-06-20T21:55:47.836+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.836+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.838+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.838+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding": visit complete, with errors
2024-06-20T21:55:47.838+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.838+0530 [TRACE] readResourceInstanceState: reading state for module.iam.google_project_iam_binding.bigquery_data_editor_role_binding
2024-06-20T21:55:47.839+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.839+0530 [TRACE] readResourceInstanceState: reading state for module.iam.google_project_iam_custom_role.collibra_role
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding": visit complete, with errors
2024-06-20T21:55:47.840+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "module.bigquery.output.inventory_reference_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] readResourceInstanceState: reading state for module.secret_manager.google_secret_manager_secret.sendgrid-secret
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] readResourceInstanceState: reading state for module.nat.google_compute_address.address[0]
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "module.gcs.output.availability_inventory_processing_bucket (expand)" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "module.composer.var.composer_service_agent_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] readResourceInstanceState: reading state for module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_p12_key_secret (expand)": dynamic subgraph encountered errors: Plugin did
not respond
2024-06-20T21:55:47.840+0530 [TRACE] upgradeResourceState: schema version of module.iam.google_project_iam_binding.bigquery_user_role_binding is still 0; calling provider "google" for
any other minor fixups
2024-06-20T21:55:47.840+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState
to prevRunState for module.bigquery.google_bigquery_dataset.inventory_restricted_dataset
2024-06-20T21:55:47.840+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_key_secret (expand)": dynamic subgraph encountered errors: Plugin did not
respond
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.840+0530 [TRACE] readResourceInstanceState: reading state for module.bigquery.google_bigquery_dataset.misc_dataset
2024-06-20T21:55:47.840+0530 [TRACE] upgradeResourceState: schema version of module.iam.google_project_iam_binding.bigquery_data_editor_role_binding is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_cloud_function_role_binding (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] vertex "module.iam.google_project_iam_binding.cloud_build_cloud_function_role_binding (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.840+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_cloud_function_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.840+0530 [TRACE] upgradeResourceState: schema version of module.iam.google_project_iam_custom_role.collibra_role is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.840+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] vertex "module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.840+0530 [TRACE] readResourceInstanceState: reading state for module.bigquery.google_bigquery_dataset.inventory_asset_dataset
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_service_account.collibra_service_account (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] vertex "module.iam.google_service_account.collibra_service_account (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_service_account.collibra_service_account (expand)": visit complete, with errors
2024-06-20T21:55:47.840+0530 [TRACE] dag/walk: upstream of "module.iam.var.inventory_reference_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.840+0530 [TRACE] upgradeResourceState: schema version of module.secret_manager.google_secret_manager_secret.sendgrid-secret is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] vertex "module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member (expand)": visit complete, with errors
2024-06-20T21:55:47.840+0530 [TRACE] upgradeResourceState: schema version of module.nat.google_compute_address.address[0] is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.840+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.840+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.840+0530 [TRACE] vertex "module.vpc.google_compute_network.vpc_network (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.vpc.google_compute_network.vpc_network (expand)" error: Plugin did not respond
2024-06-20T21:55:47.840+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.848+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
2024-06-20T21:55:47.848+0530 [TRACE] vertex "module.iam.google_project_iam_member.sa_cloud_build_role_binding (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.848+0530 [TRACE] upgradeResourceState: schema version of module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend is still 1; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.iam.google_secret_manager_secret.collibra_service_account_p12_key_secret (expand)" error: Plugin did not respond
2024-06-20T21:55:47.848+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.848+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.848+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for module.bigquery.google_bigquery_dataset.inventory_restricted_dataset
2024-06-20T21:55:47.848+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState
to refreshState for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.iam.google_secret_manager_secret.collibra_service_account_key_secret (expand)" error: Plugin did not respond
2024-06-20T21:55:47.848+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding (expand)": dynamic subgraph encountered errors: Plugin did not respond
2024-06-20T21:55:47.848+0530 [TRACE] upgradeResourceState: schema version of module.bigquery.google_bigquery_dataset.misc_dataset is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.iam.google_project_iam_binding.bigquery_user_role_binding" error: Request cancelled
2024-06-20T21:55:47.848+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.iam.google_project_iam_binding.bigquery_data_editor_role_binding" error: Request cancelled
2024-06-20T21:55:47.848+0530 [ERROR] vertex "module.iam.google_project_iam_custom_role.collibra_role" error: Request cancelled
2024-06-20T21:55:47.848+0530 [TRACE] upgradeResourceState: schema version of module.bigquery.google_bigquery_dataset.inventory_asset_dataset is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.848+0530 [TRACE] dag/walk: upstream of "module.iam.google_service_account_key.collibra_service_account_p12_key (expand)" errored, so skipping
2024-06-20T21:55:47.848+0530 [TRACE] dag/walk: upstream of "module.iam.google_service_account_key.collibra_service_account_key (expand)" errored, so skipping
2024-06-20T21:55:47.851+0530 [TRACE] dag/walk: upstream of "module.iam.google_bigquery_dataset_iam_binding.inventory_reference_dataset_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.848+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.848+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.848+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.secret_manager.google_secret_manager_secret.sendgrid-secret" error: Request cancelled
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.vpc.google_compute_network.vpc_network (expand)": visit complete, with errors
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.nat.google_compute_address.address[0]" error: Request cancelled
2024-06-20T21:55:47.852+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.iam.google_project_iam_member.sa_cloud_build_role_binding (expand)" error: Plugin did not respond
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_p12_key_secret (expand)": visit complete, with errors
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_restricted_dataset" error: Request cancelled
2024-06-20T21:55:47.852+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.iam.google_secret_manager_secret.collibra_service_account_key_secret (expand)": visit complete, with errors
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding (expand)" error: Plugin did not respond
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_user_role_binding": visit complete, with errors
2024-06-20T21:55:47.852+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_data_editor_role_binding": visit complete, with errors
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.iam.google_project_iam_custom_role.collibra_role": visit complete, with errors
2024-06-20T21:55:47.852+0530 [ERROR] vertex "module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend" error: Request cancelled
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend": visit complete, with errors
2024-06-20T21:55:47.852+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.852+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.852+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.852+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.852+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.852+0530 [TRACE] vertex "module.secret_manager.google_secret_manager_secret.sendgrid-secret": visit complete, with errors
2024-06-20T21:55:47.852+0530 [TRACE] dag/walk: upstream of "module.vpc.google_compute_subnetwork.subnet_a (expand)" errored, so skipping
2024-06-20T21:55:47.856+0530 [TRACE] dag/walk: upstream of "module.vpc.output.vpc (expand)"
errored, so skipping
2024-06-20T21:55:47.856+0530 [TRACE] vertex "module.nat.google_compute_address.address[0]":
visit complete, with errors
2024-06-20T21:55:47.857+0530 [ERROR] vertex "google_project_service.service (expand)" error: Plugin did not respond
2024-06-20T21:55:47.857+0530 [TRACE] vertex "google_project_service.service (expand)": visit complete, with errors
2024-06-20T21:55:47.857+0530 [TRACE] vertex "module.iam.google_project_iam_member.sa_cloud_build_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.857+0530 [TRACE] dag/walk: upstream of "module.iam.google_secret_manager_secret_version.p12_key_secollibra_service_account_p12_key_secret_version (expand)" errored, so skipping
2024-06-20T21:55:47.857+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_restricted_dataset": visit complete, with errors
2024-06-20T21:55:47.857+0530 [TRACE] NodeAbstractResourceInstance.refresh for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.857+0530 [TRACE] dag/walk: upstream of "module.iam.google_secret_manager_secret_version.collibra_service_account_key_secret_version (expand)" errored, so skipping
2024-06-20T21:55:47.858+0530 [TRACE] vertex "module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] readResourceInstanceState: reading state for module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] vertex "module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.859+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.misc_dataset" error: Request cancelled
2024-06-20T21:55:47.859+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_asset_dataset" error: Request cancelled
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.vpc.output.subnet_a (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.vpn.var.gke_vpc (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.composer.var.network (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.firewall.var.network (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.nat.var.network (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "module.cloud_build.var.service_networking (expand)" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.859+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.859+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_user_role_binding (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.859+0530 [ERROR] vertex "module.iam.google_project_iam_binding.bigquery_user_role_binding (expand)" error: Request cancelled
2024-06-20T21:55:47.859+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_user_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.859+0530 [TRACE] upgradeResourceState: schema version of module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset is still 0; calling provider "google" for any other minor fixups
2024-06-20T21:55:47.861+0530 [TRACE] GRPCProvider: UpgradeResourceState
2024-06-20T21:55:47.861+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_data_editor_role_binding (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [ERROR] plugin.(*GRPCProvider).UpgradeResourceState: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.iam.google_project_iam_binding.bigquery_data_editor_role_binding (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.iam.google_project_iam_custom_role.collibra_role (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.misc_dataset": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_asset_dataset": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.secret_manager.google_secret_manager_secret.sendgrid-secret (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.vpc (close)" errored, so
skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.nat.var.subnetwork (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.composer.var.subnetwork (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router.gke_ha_vpn_router (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_ha_vpn_gateway.gke_ha_vpn_gateway (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.firewall.google_compute_firewall.allow_kubernetes_api (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.nat.google_compute_router.router (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.nat.google_compute_address.address (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_compute_network.cloud_build_vpc (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_restricted_dataset (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [DEBUG] refresh: module.gcs.google_storage_bucket.data_flow_bucket: no state, so not refreshing
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.iam.google_project_iam_binding.bigquery_data_editor_role_binding (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.iam.google_project_iam_custom_role.collibra_role (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.iam.google_project_iam_custom_role.collibra_role (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_asset_dataset (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.secret_manager.google_secret_manager_secret.sendgrid-secret (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.secret_manager.google_secret_manager_secret.sendgrid-secret (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.composer.google_composer_environment.composer_env (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.nat.google_compute_address.address (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.nat.google_compute_address.address (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.cloud_build.output.cloud_build_vpc (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_compute_global_address.worker_range (expand)" errored, so skipping
2024-06-20T21:55:47.861+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_restricted_dataset (expand)" error: Request cancelled
2024-06-20T21:55:47.861+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_restricted_dataset (expand)": visit complete, with errors
2024-06-20T21:55:47.861+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.867+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState
to refreshState for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.iam.google_project_iam_binding.collibra_service_account_collibra_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.gcs_remote_backend (close)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.misc_dataset (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.867+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_asset_dataset (expand)" error: Request cancelled
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.secret_manager.output.sendgrid-secret (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.secret_manager.google_secret_manager_secret_version.sendgrid-secret-version (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.composer.output.composer_env (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.composer.output.composer_gcs_dag_bucket (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.nat.output.nat_gateway_public_address (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.nat.google_compute_router_nat.nat_gateway (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.vpn.var.cloud_build_vpc (expand)" errored, so skipping
2024-06-20T21:55:47.867+0530 [TRACE] dag/walk: upstream of "module.cloud_build.output.cloud_build_worker_rage (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_service_networking_connection.worker_pool_conn (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.bigquery.output.inventory_restricted_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] NodeAbstractResouceInstance.writeResourceInstanceState: removing state object for module.gcs.google_storage_bucket.data_flow_bucket
2024-06-20T21:55:47.869+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.869+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.misc_dataset (expand)" error: Request cancelled
2024-06-20T21:55:47.869+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_asset_dataset (expand)": visit complete, with errors
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.secret_manager (close)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.var.composer_name (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.composer (close)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.var.composer_gcs_dag_bucket (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.firewall.var.source_ranges (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.nat.output.nat_gateway (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router.cloud_build_ha_vpn_router (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_ha_vpn_gateway.cloud_build_ha_vpn_gateway (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.vpn.var.cloud_build_worker_rage (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_cloudbuild_worker_pool.worker_pool (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.output.cloud_bulid_private_worker_pool (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_cloudbuild_trigger.sync_airflow_vars_trigger (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.869+0530 [ERROR] vertex "module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset (expand)" error: Request cancelled
2024-06-20T21:55:47.869+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset (expand)": visit complete, with errors
2024-06-20T21:55:47.869+0530 [TRACE] vertex "module.bigquery.google_bigquery_dataset.misc_dataset (expand)": visit complete, with errors
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.bigquery.output.inventory_asset_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.firewall.google_compute_firewall.rules (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.nat (close)" errored, so
skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_vpn_tunnel.cloud_build_to_gke-tunnel_2 (expand)" errored, so skipping
2024-06-20T21:55:47.869+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_vpn_tunnel.cloud_build_to_gke-tunnel_1 (expand)" errored, so skipping
2024-06-20T21:55:47.874+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_vpn_tunnel.gke_to_cloud_build_tunnel_2 (expand)" errored, so skipping
2024-06-20T21:55:47.875+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_interface.gke_ha_vpn_router_interface_2 (expand)" errored, so skipping
2024-06-20T21:55:47.875+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_vpn_tunnel.gke_to_cloud_build_tunnel_1 (expand)" errored, so skipping
2024-06-20T21:55:47.875+0530 [TRACE] dag/walk: upstream of "module.iam.var.inventory_restricted_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.876+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_cloudbuild_trigger.sync_airflow_vars_trigger_feature_branch (expand)" errored, so skipping
2024-06-20T21:55:47.876+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_cloudbuild_trigger.sync_airflow_dags_trigger (expand)" errored, so skipping
2024-06-20T21:55:47.876+0530 [TRACE] dag/walk: upstream of "module.cloud_build.google_cloudbuild_trigger.sync_airflow_dags_trigger_feature_branch (expand)" errored, so skipping
2024-06-20T21:55:47.876+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.876+0530 [TRACE] dag/walk: upstream of "module.bigquery.output.inventory_data_checks_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.bigquery.output.misc_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.iam.var.inventory_asset_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.firewall (close)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_interface.cloud_build_ha_vpn_router_interface_2 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_interface.cloud_build_ha_vpn_router_interface_1 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_peer.gke_ha_vpn_router_peer_2 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_interface.gke_ha_vpn_router_interface_1 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.iam.google_bigquery_dataset_iam_binding.inventory_restricted_dataset_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.cloud_build (close)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] Re-validating config for "module.gcs.google_storage_bucket.data_flow_bucket"
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.iam.var.inventory_data_checks_dataset (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.bigquery (close)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] GRPCProvider: ValidateResourceConfig
2024-06-20T21:55:47.877+0530 [TRACE] GRPCProvider: GetProviderSchema
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.iam.google_bigquery_dataset_iam_binding.inventory_asset_dataset_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [ERROR] plugin.(*GRPCProvider).ValidateResourceConfig: error="rpc error: code = Canceled desc = context canceled"
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.iam.google_bigquery_dataset_iam_binding.inventory_asset_dataset_writer_role_binding (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_peer.cloud_build_ha_vpn_router_peer_2 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_peer.cloud_build_ha_vpn_router_peer_1 (expand)" errored, so skipping
2024-06-20T21:55:47.877+0530 [TRACE] dag/walk: upstream of "module.vpn.google_compute_router_peer.gke_ha_vpn_router_peer_1 (expand)" errored, so skipping
2024-06-20T21:55:47.879+0530 [ERROR] vertex "module.gcs.google_storage_bucket.data_flow_bucket" error: Request cancelled
2024-06-20T21:55:47.879+0530 [TRACE] vertex "module.gcs.google_storage_bucket.data_flow_bucket": visit complete, with errors
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "module.iam (close)" errored, so
skipping
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "module.vpn (close)" errored, so
skipping
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.879+0530 [TRACE] vertex "module.gcs.google_storage_bucket.data_flow_bucket (expand)": dynamic subgraph encountered errors: Request cancelled
2024-06-20T21:55:47.879+0530 [ERROR] vertex "module.gcs.google_storage_bucket.data_flow_bucket (expand)" error: Request cancelled
2024-06-20T21:55:47.879+0530 [TRACE] vertex "module.gcs.google_storage_bucket.data_flow_bucket (expand)": visit complete, with errors
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "module.gcs (close)" errored, so
skipping
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "provider["registry.terraform.io/hashicorp/google"] (close)" errored, so skipping
2024-06-20T21:55:47.879+0530 [TRACE] dag/walk: upstream of "root" errored, so skipping
2024-06-20T21:55:47.879+0530 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/hashicorp/google"
2024-06-20T21:55:47.879+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache
2024-06-20T21:55:47.882+0530 [INFO] backend/local: plan operation completed
2024-06-20T21:55:47.882+0530 [INFO] backend/local: writing plan output to: plan.tfplan
2024-06-20T21:55:47.891+0530 [TRACE] LoadSchemas: retrieving schema for provider type "registry.terraform.io/hashicorp/google"
2024-06-20T21:55:47.891+0530 [TRACE] terraform.contextPlugins: Schema for provider "registry.terraform.io/hashicorp/google" is in the global cache

Planning failed. Terraform encountered an error while generating this plan.

╷
│ Warning: Value for undeclared variable
│
│ The root module does not declare a variable named "location_id" but a value was found in
│ file "./test.tfvars". If you meant to use this value, add a "variable" block to the
│ configuration.
│
│ To silence these warnings, use TF_VAR_... environment variables to provide certain
│ "global" settings to all configurations in your organization. To reduce the verbosity of
│ these warnings, use the -compact-warnings option.
╵
╷
│ Warning: Value for undeclared variable
│
│ The root module does not declare a variable named "location" but a value was found in
│ file "./test.tfvars". If you meant to use this value, add a "variable" block to the
│ configuration.
│
│ To silence these warnings, use TF_VAR_... environment variables to provide certain
│ "global" settings to all configurations in your organization. To reduce the verbosity of
│ these warnings, use the -compact-warnings option.
╵
╷
│ Error: Request cancelled
│
│ The plugin.(*GRPCProvider).ImportResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["drive.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["storage-component.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["storage-api.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["cloudfunctions.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["cloudbuild.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with google_project_service.service["bigquerystorage.googleapis.com"],
│ on main.tf line 16, in resource "google_project_service" "service":
│ 16: resource "google_project_service" "service" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Request cancelled
│
│ with module.bigquery.google_bigquery_dataset.inventory_asset_dataset,
│ on ....\modules\bigquery\bigquery.tf line 2, in resource "google_bigquery_dataset" "inventory_asset_dataset":
│ 2: resource "google_bigquery_dataset" "inventory_asset_dataset" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Request cancelled
│
│ with module.bigquery.google_bigquery_dataset.inventory_data_checks_dataset,
│ on ....\modules\bigquery\bigquery.tf line 11, in resource "google_bigquery_dataset" "inventory_data_checks_dataset":
│ 11: resource "google_bigquery_dataset" "inventory_data_checks_dataset" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with module.bigquery.google_bigquery_dataset.inventory_reference_dataset,
│ on ....\modules\bigquery\bigquery.tf line 20, in resource "google_bigquery_dataset" "inventory_reference_dataset":
│ 20: resource "google_bigquery_dataset" "inventory_reference_dataset" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Request cancelled
│
│ with module.bigquery.google_bigquery_dataset.misc_dataset,
│ on ....\modules\bigquery\bigquery.tf line 38, in resource "google_bigquery_dataset" "misc_dataset":
│ 38: resource "google_bigquery_dataset" "misc_dataset" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with module.gcs.google_storage_bucket.availability_inventory_processing,
│ on ....\modules\gcs\gcs.tf line 1, in resource "google_storage_bucket" "availability_inventory_processing":
│ 1: resource "google_storage_bucket" "availability_inventory_processing" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Request cancelled
│
│ with module.gcs.google_storage_bucket.data_flow_bucket,
│ on ....\modules\gcs\gcs.tf line 17, in resource "google_storage_bucket" "data_flow_bucket":
│ 17: resource "google_storage_bucket" "data_flow_bucket" {
│
│ The plugin.(*GRPCProvider).ValidateResourceConfig request was cancelled.
╵
╷
│ Error: Request cancelled
│
│ with module.gcs_remote_backend.google_storage_bucket.gcs_remote_backend,
│ on ....\modules\gcs_remote_backend\gcs_remote_backend.tf line 3, in resource "google_storage_bucket" "gcs_remote_backend":
│ 3: resource "google_storage_bucket" "gcs_remote_backend" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Request cancelled
│
│ with module.iam.google_project_iam_binding.bigquery_data_editor_role_binding,
│ on ....\modules\iam\iam-bigquery.tf line 32, in resource "google_project_iam_binding" "bigquery_data_editor_role_binding":
│ 32: resource "google_project_iam_binding" "bigquery_data_editor_role_binding" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Request cancelled
│
│ with module.iam.google_project_iam_binding.bigquery_user_role_binding,
│ on ....\modules\iam\iam-bigquery.tf line 39, in resource "google_project_iam_binding" "bigquery_user_role_binding":
│ 39: resource "google_project_iam_binding" "bigquery_user_role_binding" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_service_account.composer_service_account,
│ on ....\modules\iam\iam.tf line 4, in resource "google_service_account" "composer_service_account":
│ 4: resource "google_service_account" "composer_service_account" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_member.service_account_composer_service_agent_iam_member,
│ on ....\modules\iam\iam.tf line 82, in resource "google_project_iam_member" "service_account_composer_service_agent_iam_member":
│ 82: resource "google_project_iam_member" "service_account_composer_service_agent_iam_member" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_binding.cloud_build_worker_pool_role_binding,
│ on ....\modules\iam\iam.tf line 121, in resource "google_project_iam_binding" "cloud_build_worker_pool_role_binding":
│ 121: resource "google_project_iam_binding" "cloud_build_worker_pool_role_binding" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_binding.cloud_build_cloud_function_role_binding,
│ on ....\modules\iam\iam.tf line 128, in resource "google_project_iam_binding" "cloud_build_cloud_function_role_binding":
│ 128: resource "google_project_iam_binding" "cloud_build_cloud_function_role_binding" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_binding.cloud_build_iam_service_account_user_role_binding,
│ on ....\modules\iam\iam.tf line 135, in resource "google_project_iam_binding" "cloud_build_iam_service_account_user_role_binding":
│ 135: resource "google_project_iam_binding" "cloud_build_iam_service_account_user_role_binding" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_binding.cloud_build_compute_admin_role_binding,
│ on ....\modules\iam\iam.tf line 142, in resource "google_project_iam_binding" "cloud_build_compute_admin_role_binding":
│ 142: resource "google_project_iam_binding" "cloud_build_compute_admin_role_binding" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_project_iam_member.sa_cloud_build_role_binding,
│ on ....\modules\iam\iam.tf line 149, in resource "google_project_iam_member" "sa_cloud_build_role_binding":
│ 149: resource "google_project_iam_member" "sa_cloud_build_role_binding" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_service_account.collibra_service_account,
│ on ....\modules\iam\iam.tf line 197, in resource "google_service_account" "collibra_service_account":
│ 197: resource "google_service_account" "collibra_service_account" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Request cancelled
│
│ with module.iam.google_project_iam_custom_role.collibra_role,
│ on ....\modules\iam\iam.tf line 204, in resource "google_project_iam_custom_role" "collibra_role":
│ 204: resource "google_project_iam_custom_role" "collibra_role" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_secret_manager_secret.collibra_service_account_key_secret,
│ on ....\modules\iam\iam.tf line 236, in resource "google_secret_manager_secret" "collibra_service_account_key_secret":
│ 236: resource "google_secret_manager_secret" "collibra_service_account_key_secret" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Plugin did not respond
│
│ with module.iam.google_secret_manager_secret.collibra_service_account_p12_key_secret,
│ on ....\modules\iam\iam.tf line 256, in resource "google_secret_manager_secret" "collibra_service_account_p12_key_secret":
│ 256: resource "google_secret_manager_secret" "collibra_service_account_p12_key_secret" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
╷
│ Error: Request cancelled
│
│ with module.nat.google_compute_address.address[0],
│ on ....\modules\nat\nat.tf line 8, in resource "google_compute_address" "address":
│ 8: resource "google_compute_address" "address" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Request cancelled
│
│ with module.secret_manager.google_secret_manager_secret.sendgrid-secret,
│ on ....\modules\secret_manager\secret_manager.tf line 1, in resource "google_secret_manager_secret" "sendgrid-secret":
│ 1: resource "google_secret_manager_secret" "sendgrid-secret" {
│
│ The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled.
╵
╷
│ Error: Plugin did not respond
│
│ with module.vpc.google_compute_network.vpc_network,
│ on ....\modules\vpc\vpc.tf line 1, in resource "google_compute_network" "vpc_network":
│ 1: resource "google_compute_network" "vpc_network" {
│
│ The plugin encountered an error, and failed to respond to the
│ plugin.(*GRPCProvider).UpgradeResourceState call. The plugin logs may contain more
│ details.
╵
Releasing state lock. This may take a few moments...

Stack trace from the terraform-provider-google_v5.9.0_x5.exe plugin:

panic: Error reading level state: strconv.ParseInt: parsing "1708408269335": value out of range

goroutine 513 [running]:
github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.(*ResourceData).get(0xf14a690, {0xf2dca90, 0x1, 0x1}, 0x8)
github.com/hashicorp/terraform-plugin-sdk/v2@v2.24.0/helper/schema/resource_data.go:553 +0x279
github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.(*ResourceData).State(0xf14a690)
github.com/hashicorp/terraform-plugin-sdk/v2@v2.24.0/helper/schema/resource_data.go:351 +0x3a7
github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.(*Resource).ShimInstanceStateFromValue(0xf1f5260, {{{0x4340934, 0xf1fd618}}, {0x3756940, 0xfe90ee0}})
github.com/hashicorp/terraform-plugin-sdk/v2@v2.24.0/helper/schema/resource.go:599 +0x1d9
github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema.(*GRPCProviderServer).ReadResource(0xf972e00, {0x43401b4, 0x10093110}, 0xf3f8e80)
github.com/hashicorp/terraform-plugin-sdk/v2@v2.24.0/helper/schema/grpc_provider.go:587 +0x23f
github.com/hashicorp/terraform-plugin-mux/tf5muxserver.muxServer.ReadResource({0xfa048e0, 0xfa04920, {0xfd1c470, 0x2, 0x2}, {0x0, 0x0, 0x0}, {0x0, 0x0, ...}, ...}, ...)
github.com/hashicorp/terraform-plugin-mux@v0.8.0/tf5muxserver/mux_server_ReadResource.go:26 +0x151
github.com/hashicorp/terraform-plugin-go/tfprotov5/tf5server.(*server).ReadResource(0xfe216d0, {0x43401b4, 0xfec09a8}, 0xfcc65a0)
github.com/hashicorp/terraform-plugin-go@v0.14.3/tfprotov5/tf5server/server.go:748 +0x4c5
github.com/hashicorp/terraform-plugin-go/tfprotov5/internal/tfplugin5._Provider_ReadResource_Handler({0x3c55980, 0xfe216d0}, {0x43401b4, 0xfec09a8}, 0xf13a980, 0x0)
github.com/hashicorp/terraform-plugin-go@v0.14.3/tfprotov5/internal/tfplugin5/tfplugin5_grpc.pb.go:349 +0x18a
google.golang.org/grpc.(*Server).processUnaryRPC(0xf150dc0, {0x43401b4, 0xfec0960}, {0x4344c64, 0xf7b0fc0}, 0xfaeca00, 0xf7d3698, 0x5bf7cc8, 0x0)
google.golang.org/grpc@v1.59.0/server.go:1343 +0xf68
google.golang.org/grpc.(*Server).handleStream(0xf150dc0, {0x4344c64, 0xf7b0fc0}, 0xfaeca00)
google.golang.org/grpc@v1.59.0/server.go:1737 +0xd03
google.golang.org/grpc.(*Server).serveStreams.func1.1()
google.golang.org/grpc@v1.59.0/server.go:986 +0xa7
created by google.golang.org/grpc.(*Server).serveStreams.func1
google.golang.org/grpc@v1.59.0/server.go:997 +0x16b

Error: The terraform-provider-google_v5.9.0_x5.exe plugin crashed!

This is always indicative of a bug within the plugin. It would be immensely
helpful if you could report the crash with the plugin's maintainers so that it
can be fixed. The output above should help diagnose the issue.

2024-06-20T21:55:48.475+0530 [DEBUG] provider: plugin exited

Expected Behavior

To read the terraform resource and show no changes (or a change in place, if required)

Actual Behavior

Error: The terraform-provider-google_v5.9.0_x5.exe plugin crashed! After initializing the modules, terraform plan throws this error.

Steps to reproduce

  1. terraform init
  2. terraform plan -var-file="./dev.tfvars" -out plan.tfplan

Important Factoids

No response

References

No response

ggtisc commented 2 months ago

Hi @ryarlagadda-wiq!

Please send us the next to confirm this issue:

  1. The output of a terraform -version to check your system configuration
  2. Confirm us if your system is 32-bit or 64-bit
ryarlagadda-wiq commented 2 months ago

Hi @ggtisc, Sure. Please find the terraform version below. image

It is 64-bit operating system. Thanks!

ryarlagadda-wiq commented 2 months ago

I've upgraded the terraform version to v1.8.5 and don't see the crash error anymore. Keen to know why such errors happen, if it's related to the Terraform or Provider code though.

ggtisc commented 2 months ago

You can find more information about these kinds of situations here.

I recommend you to be sure that both versions (terraform and system) match to avoid this kind of issues. A 64-bit binary like windows_amd64, to prevent this from coming up again.

github-actions[bot] commented 1 month ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.