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.29k stars 1.72k forks source link

CloudRun - The requested URL <code>/apis/serving.knative.dev/v1/namespaces/projects/<project>/services?alt=json</code> was not found on this server. #10872

Closed ScottPierce closed 2 years ago

ScottPierce commented 2 years ago

Community Note

Terraform Version

Terraform v1.1.3 on linux_amd64

Affected Resource(s)

Terraform Configuration Files

resource "google_project_service" "cloud_run" {
  provider                   = google-beta
  project                    = google_project.default.id
  service                    = "run.googleapis.com"
  disable_dependent_services = true
}

resource "google_cloud_run_service" "api" {
  project = google_project.default.id

  name     = "api"
  location = "us-central1"

  template {
    spec {
      containers {
        image = var.docker_image_api

#        resources {
#          limits = {
#            "memory" = "256Mi"
#            "cpu"    = "1"
#          }
#        }
      }
      container_concurrency = 100
    }

#    metadata {
#      annotations = {
#        "autoscaling.knative.dev/minScale" = var.is_prod ? "4" : "1"
#        "autoscaling.knative.dev/maxScale" = var.is_prod ? "20" : "5"
#        #"run.googleapis.com/cloudsql-instances" =
#      }
#    }
  }

  traffic {
    percent         = 100
    latest_revision = true
  }

  depends_on = [google_project_service.cloud_run]
}

Debug Output

Run terraform apply -auto-approve -lock-timeout 5m
2022-01-09T16:00:41.822Z [INFO]  Terraform version: 1.1.3
2022-01-09T16:00:41.822Z [INFO]  Go runtime version: go1.17.2
2022-01-09T16:00:41.822Z [INFO]  CLI args: []string***"terraform", "apply", "-auto-approve", "-lock-timeout", "5m"***
2022-01-09T16:00:41.822Z [DEBUG] Attempting to open CLI config file: /root/.terraformrc
2022-01-09T16:00:41.822Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2022-01-09T16:00:41.822Z [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2022-01-09T16:00:41.822Z [DEBUG] ignoring non-existing provider search directory /root/.terraform.d/plugins
2022-01-09T16:00:41.822Z [DEBUG] ignoring non-existing provider search directory /root/.local/share/terraform/plugins
2022-01-09T16:00:41.822Z [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2022-01-09T16:00:41.822Z [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2022-01-09T16:00:41.822Z [INFO]  CLI command args: []string***"apply", "-auto-approve", "-lock-timeout", "5m"***
2022-01-09T16:00:42.127Z [DEBUG] checking for provisioner in "."
2022-01-09T16:00:42.130Z [DEBUG] checking for provisioner in "/usr/bin"
2022-01-09T16:00:42.131Z [INFO]  backend/local: starting Apply operation
2022-01-09T16:00:42.730Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:42.730Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:42.736Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5]
2022-01-09T16:00:42.736Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4089
2022-01-09T16:00:42.736Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5
2022-01-09T16:00:42.749Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:42.748Z
2022-01-09T16:00:42.768Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:42.768Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: plugin address: address=/tmp/plugin147933568 network=unix timestamp=2022-01-09T16:00:42.768Z
2022-01-09T16:00:42.815Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:42.816Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4089
2022-01-09T16:00:42.816Z [DEBUG] provider: plugin exited
2022-01-09T16:00:42.816Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:42.816Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:42.822Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5]
2022-01-09T16:00:42.822Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4122
2022-01-09T16:00:42.822Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5
2022-01-09T16:00:42.834Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:42.834Z
2022-01-09T16:00:42.854Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:42.854Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: plugin address: address=/tmp/plugin191340393 network=unix timestamp=2022-01-09T16:00:42.854Z
2022-01-09T16:00:42.902Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:42.903Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4122
2022-01-09T16:00:42.903Z [DEBUG] provider: plugin exited
2022-01-09T16:00:42.903Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:42.903Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:42.909Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5]
2022-01-09T16:00:42.909Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4154
2022-01-09T16:00:42.909Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5
2022-01-09T16:00:42.912Z [INFO]  provider.terraform-provider-random_v3.1.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:42.912Z
2022-01-09T16:00:42.933Z [DEBUG] provider.terraform-provider-random_v3.1.0_x5: plugin address: address=/tmp/plugin456208893 network=unix timestamp=2022-01-09T16:00:42.933Z
2022-01-09T16:00:42.933Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:42.950Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:42.951Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4154
2022-01-09T16:00:42.951Z [DEBUG] provider: plugin exited
2022-01-09T16:00:42.951Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:42.951Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:42.956Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/time/0.7.2/linux_amd64/terraform-provider-time_v0.7.2_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/time/0.7.2/linux_amd64/terraform-provider-time_v0.7.2_x5]
2022-01-09T16:00:42.957Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/time/0.7.2/linux_amd64/terraform-provider-time_v0.7.2_x5 pid=4167
2022-01-09T16:00:42.957Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/time/0.7.2/linux_amd64/terraform-provider-time_v0.7.2_x5
2022-01-09T16:00:42.960Z [INFO]  provider.terraform-provider-time_v0.7.2_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:42.960Z
2022-01-09T16:00:42.981Z [DEBUG] provider.terraform-provider-time_v0.7.2_x5: plugin address: address=/tmp/plugin634986154 network=unix timestamp=2022-01-09T16:00:42.981Z
2022-01-09T16:00:42.981Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:42.998Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:42.998Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/time/0.7.2/linux_amd64/terraform-provider-time_v0.7.2_x5 pid=4167
2022-01-09T16:00:42.998Z [DEBUG] provider: plugin exited
2022-01-09T16:00:42.998Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:42.998Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.004Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/integrations/github/4.4.0/linux_amd64/terraform-provider-github_v4.4.0 args=[.terraform/providers/registry.terraform.io/integrations/github/4.4.0/linux_amd64/terraform-provider-github_v4.4.0]
2022-01-09T16:00:43.004Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/integrations/github/4.4.0/linux_amd64/terraform-provider-github_v4.4.0 pid=4181
2022-01-09T16:00:43.004Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/integrations/github/4.4.0/linux_amd64/terraform-provider-github_v4.4.0
2022-01-09T16:00:43.010Z [INFO]  provider.terraform-provider-github_v4.4.0: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.010Z
2022-01-09T16:00:43.022Z [DEBUG] provider.terraform-provider-github_v4.4.0: plugin address: address=/tmp/plugin801924652 network=unix timestamp=2022-01-09T16:00:43.022Z
2022-01-09T16:00:43.022Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.038Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unimplemented desc = unknown service plugin.GRPCStdio"
2022-01-09T16:00:43.039Z [DEBUG] No provider meta schema returned
2022-01-09T16:00:43.040Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/integrations/github/4.4.0/linux_amd64/terraform-provider-github_v4.4.0 pid=4181
2022-01-09T16:00:43.040Z [DEBUG] provider: plugin exited
2022-01-09T16:00:43.040Z [DEBUG] Building and walking validate graph
2022-01-09T16:00:43.040Z [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by random_string.project_id_suffix
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql_admin_api" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.cloud_run" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.compute_engine_api" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.service_usage" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.cloud_resource" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_cloud_run_service.api" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project.default" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "random_string.project_id_suffix" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"]
2022-01-09T16:00:43.040Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.040Z [DEBUG] pruning unused provider["registry.terraform.io/integrations/github"]
2022-01-09T16:00:43.040Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/time"]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql" references: [google_project.default]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.compute_engine_api" references: [google_project.default]
2022-01-09T16:00:43.041Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.041Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project.default" references: [local.devit_billing_account_id (expand) local.devit_project_folder_id (expand) local.base_project_name (expand) local.base_project_name (expand) random_string.project_id_suffix]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql_admin_api" references: [google_project.default]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_run" references: [google_project.default]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "var.docker_image_api" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "local.base_project_name (expand)" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.service_usage" references: [google_project.default]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google-beta\"]" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "random_string.project_id_suffix" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_resource" references: [google_project.default]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "local.devit_project_folder_id (expand)" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "local.devit_organization_id (expand)" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "google_cloud_run_service.api" references: [google_project_service.cloud_run google_project.default var.docker_image_api]
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "var.is_prod" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "local.devit_billing_account_id (expand)" references: []
2022-01-09T16:00:43.041Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google\"]" references: []
2022-01-09T16:00:43.041Z [DEBUG] Starting graph walk: walkValidate
2022-01-09T16:00:43.042Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.042Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.047Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5]
2022-01-09T16:00:43.048Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4197
2022-01-09T16:00:43.048Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5
2022-01-09T16:00:43.051Z [INFO]  provider.terraform-provider-random_v3.1.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.051Z
2022-01-09T16:00:43.071Z [DEBUG] provider.terraform-provider-random_v3.1.0_x5: plugin address: address=/tmp/plugin650988612 network=unix timestamp=2022-01-09T16:00:43.071Z
2022-01-09T16:00:43.071Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.087Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.087Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.093Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5]
2022-01-09T16:00:43.093Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4210
2022-01-09T16:00:43.093Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5
2022-01-09T16:00:43.106Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.106Z
2022-01-09T16:00:43.127Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.127Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: plugin address: address=/tmp/plugin379720701 network=unix timestamp=2022-01-09T16:00:43.127Z
2022-01-09T16:00:43.144Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.144Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.150Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5]
2022-01-09T16:00:43.150Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4237
2022-01-09T16:00:43.150Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5
2022-01-09T16:00:43.164Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.164Z
2022-01-09T16:00:43.187Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: plugin address: address=/tmp/plugin864382072 network=unix timestamp=2022-01-09T16:00:43.187Z
2022-01-09T16:00:43.187Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.204Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:43.204Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4197
2022-01-09T16:00:43.204Z [DEBUG] provider: plugin exited
2022-01-09T16:00:43.260Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:43.261Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4210
2022-01-09T16:00:43.261Z [DEBUG] provider: plugin exited
2022-01-09T16:00:43.262Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:43.263Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4237
2022-01-09T16:00:43.263Z [DEBUG] provider: plugin exited
2022-01-09T16:00:43.263Z [INFO]  backend/local: apply calling Plan
2022-01-09T16:00:43.263Z [DEBUG] Building and walking plan graph for NormalMode
2022-01-09T16:00:43.263Z [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by random_string.project_id_suffix (expand)
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_cloud_run_service.api (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.compute_engine_api (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project.default (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.cloud_run (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.cloud_resource (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "random_string.project_id_suffix (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql_admin_api (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] ProviderTransformer: "google_project_service.service_usage (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:43.263Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/time"]
2022-01-09T16:00:43.263Z [DEBUG] pruning unused provider["registry.terraform.io/integrations/github"]
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "var.docker_image_api" references: []
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "var.is_prod" references: []
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_run (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_resource (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "local.devit_billing_account_id (expand)" references: []
2022-01-09T16:00:43.263Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.263Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "google_project.default (expand)" references: [local.devit_billing_account_id (expand) local.base_project_name (expand) local.base_project_name (expand) random_string.project_id_suffix (expand) local.devit_project_folder_id (expand)]
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "google_project_service.service_usage (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google\"]" references: []
2022-01-09T16:00:43.263Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google-beta\"]" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "random_string.project_id_suffix (expand)" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql_admin_api (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "local.base_project_name (expand)" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "local.devit_organization_id (expand)" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "local.devit_project_folder_id (expand)" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: []
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "google_cloud_run_service.api (expand)" references: [google_project_service.cloud_run (expand) google_project.default (expand) var.docker_image_api]
2022-01-09T16:00:43.264Z [DEBUG] ReferenceTransformer: "google_project_service.compute_engine_api (expand)" references: [google_project.default (expand)]
2022-01-09T16:00:43.264Z [DEBUG] Starting graph walk: walkPlan
2022-01-09T16:00:43.264Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.264Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.270Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5]
2022-01-09T16:00:43.270Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4277
2022-01-09T16:00:43.270Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5
2022-01-09T16:00:43.274Z [INFO]  provider.terraform-provider-random_v3.1.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.274Z
2022-01-09T16:00:43.295Z [DEBUG] provider.terraform-provider-random_v3.1.0_x5: plugin address: address=/tmp/plugin099023708 network=unix timestamp=2022-01-09T16:00:43.295Z
2022-01-09T16:00:43.295Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.311Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.311Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.317Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5]
2022-01-09T16:00:43.317Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4292
2022-01-09T16:00:43.317Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5
2022-01-09T16:00:43.329Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.329Z
2022-01-09T16:00:43.349Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: plugin address: address=/tmp/plugin012321227 network=unix timestamp=2022-01-09T16:00:43.349Z
2022-01-09T16:00:43.349Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.365Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:43.365Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:43.365Z [DEBUG] ReferenceTransformer: "random_string.project_id_suffix" references: []
2022-01-09T16:00:43.371Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5]
2022-01-09T16:00:43.371Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4318
2022-01-09T16:00:43.371Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5
2022-01-09T16:00:43.391Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:43.391Z
2022-01-09T16:00:43.413Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: plugin address: address=/tmp/plugin252392537 network=unix timestamp=2022-01-09T16:00:43.413Z
2022-01-09T16:00:43.413Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:43.425Z [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/google\"]" changed the config value, but that value is unused
random_string.project_id_suffix: Refreshing state... [id=96hrf]
2022-01-09T16:00:43.431Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:43.431Z
2022-01-09T16:00:43.431Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:43.431Z
2022-01-09T16:00:43.432Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:43.431Z
2022-01-09T16:00:43.432Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:43.431Z
2022-01-09T16:00:43.432Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:43.431Z
2022-01-09T16:00:43.433Z [WARN]  Provider "registry.terraform.io/hashicorp/random" produced an invalid plan for random_string.project_id_suffix, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .number: planned value cty.True for a non-computed attribute
      - .lower: planned value cty.True for a non-computed attribute
      - .min_numeric: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .min_special: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .min_lower: planned value cty.NumberIntVal(0) for a non-computed attribute
      - .min_upper: planned value cty.NumberIntVal(0) for a non-computed attribute
2022-01-09T16:00:43.434Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:43.434Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=4277
2022-01-09T16:00:43.434Z [DEBUG] provider: plugin exited
2022-01-09T16:00:43.492Z [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/google-beta\"]" changed the config value, but that value is unused
2022-01-09T16:00:43.493Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:43.493Z
2022-01-09T16:00:43.493Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:43.493Z
2022-01-09T16:00:43.493Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:43.493Z
2022-01-09T16:00:43.493Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:43.493Z
2022-01-09T16:00:43.493Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:43.493Z
2022-01-09T16:00:43.616Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Terraform is using this identity: terraform-check-it-in@devit-root-a93k.iam.gserviceaccount.com: timestamp=2022-01-09T16:00:43.616Z
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "local.devit_project_folder_id"
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "local.base_project_name"
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "local.base_project_name"
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "terraform.workspace"
2022-01-09T16:00:43.616Z [INFO]  ReferenceTransformer: reference not found: "local.devit_billing_account_id"
2022-01-09T16:00:43.617Z [DEBUG] ReferenceTransformer: "google_project.default" references: []
google_project.default: Refreshing state... [id=projects/azapp-int-96hrf]
2022-01-09T16:00:43.618Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:43.618Z
2022-01-09T16:00:43.618Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:43.618Z
2022-01-09T16:00:43.618Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:43.618Z
2022-01-09T16:00:43.618Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:43.618Z
2022-01-09T16:00:43.618Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:43.618Z
2022-01-09T16:00:43.646Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Terraform is using this identity: terraform-check-it-in@devit-root-a93k.iam.gserviceaccount.com: timestamp=2022-01-09T16:00:43.646Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=47
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [INFO] Instantiating Google Cloud Billing client for path https://cloudbilling.googleapis.com/: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.769Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:43.770Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:43 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf/billingInfo?alt=json&prettyPrint=false HTTP/1.1
Host: cloudbilling.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:43.769Z
2022-01-09T16:00:44.006Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "name": "projects/azapp-int-96hrf/billingInfo",
 "projectId": "azapp-int-96hrf",
 "billingAccountName": "billingAccounts/01EA8E-4FE406-FDCB90",
 "billingEnabled": true
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.006Z
2022-01-09T16:00:44.006Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.006Z
2022-01-09T16:00:44.006Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.006Z
2022-01-09T16:00:44.008Z [WARN]  Provider "registry.terraform.io/hashicorp/google" produced an invalid plan for google_project.default, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .labels: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
      - .org_id: planned value cty.StringVal("") for a non-computed attribute
      - .auto_create_network: planned value cty.True for a non-computed attribute
2022-01-09T16:00:44.008Z [DEBUG] ReferenceTransformer: "google_project_service.service_usage" references: []
2022-01-09T16:00:44.008Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_resource" references: []
2022-01-09T16:00:44.008Z [DEBUG] ReferenceTransformer: "google_project_service.compute_engine_api" references: []
2022-01-09T16:00:44.008Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql_admin_api" references: []
2022-01-09T16:00:44.009Z [DEBUG] Resource instance state not found for node "google_project_service.cloud_run", instance google_project_service.cloud_run
2022-01-09T16:00:44.009Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_run" references: []
2022-01-09T16:00:44.009Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql" references: []
2022-01-09T16:00:44.009Z [DEBUG] refresh: google_project_service.cloud_run: no state, so not refreshing
google_project_service.service_usage: Refreshing state... [id=azapp-int-96hrf/serviceusage.googleapis.com]
google_project_service.cloud_resource: Refreshing state... [id=azapp-int-96hrf/cloudresourcemanager.googleapis.com]
google_project_service.compute_engine_api: Refreshing state... [id=azapp-int-96hrf/compute.googleapis.com]
google_project_service.cloud_sql_admin_api: Refreshing state... [id=azapp-int-96hrf/sqladmin.googleapis.com]
google_project_service.cloud_sql: Refreshing state... [id=azapp-int-96hrf/sql-component.googleapis.com]
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.010Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.011Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:44.010Z
2022-01-09T16:00:44.011Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.cloud_run, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:44.011Z [DEBUG] Resource instance state not found for node "google_cloud_run_service.api", instance google_cloud_run_service.api
2022-01-09T16:00:44.011Z [INFO]  ReferenceTransformer: reference not found: "google_project_service.cloud_run"
2022-01-09T16:00:44.011Z [INFO]  ReferenceTransformer: reference not found: "var.docker_image_api"
2022-01-09T16:00:44.011Z [DEBUG] ReferenceTransformer: "google_cloud_run_service.api" references: []
2022-01-09T16:00:44.011Z [DEBUG] refresh: google_cloud_run_service.api: no state, so not refreshing
2022-01-09T16:00:44.015Z [WARN]  Provider "registry.terraform.io/hashicorp/google" produced an invalid plan for google_cloud_run_service.api, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .autogenerate_revision_name: planned value cty.False for a non-computed attribute
      - .metadata: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
      - .template[0].metadata: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
      - .template[0].spec[0].containers[0].ports: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
      - .template[0].spec[0].containers[0].resources: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
2022-01-09T16:00:44.015Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] [transport] transport: http2Server.HandleStreams failed to read frame: read unix /tmp/plugin012321227->@: use of closed network connection 
2022-01-09T16:00:44.015Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:44.017Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4292
2022-01-09T16:00:44.017Z [DEBUG] provider: plugin exited
2022-01-09T16:00:44.134Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=44
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.134Z
2022-01-09T16:00:44.134Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.134Z
2022-01-09T16:00:44.134Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.134Z
2022-01-09T16:00:44.134Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Creating new batch "List Project Services azapp-int-96hrf" from request "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:44.134Z
2022-01-09T16:00:44.198Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=108
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.198Z
2022-01-09T16:00:44.198Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.198Z
2022-01-09T16:00:44.198Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.198Z
2022-01-09T16:00:44.198Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Adding batch request "List Project Services azapp-int-96hrf" to existing batch "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:44.198Z
2022-01-09T16:00:44.198Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Added batch request "List Project Services azapp-int-96hrf" to batch. New batch body: <nil>: timestamp=2022-01-09T16:00:44.198Z
2022-01-09T16:00:44.242Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=152
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.242Z
2022-01-09T16:00:44.242Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.242Z
2022-01-09T16:00:44.242Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.242Z
2022-01-09T16:00:44.242Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Adding batch request "List Project Services azapp-int-96hrf" to existing batch "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:44.242Z
2022-01-09T16:00:44.242Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Added batch request "List Project Services azapp-int-96hrf" to batch. New batch body: <nil>: timestamp=2022-01-09T16:00:44.242Z
2022-01-09T16:00:44.300Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=210
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.300Z
2022-01-09T16:00:44.300Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.300Z
2022-01-09T16:00:44.300Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.300Z
2022-01-09T16:00:44.300Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Adding batch request "List Project Services azapp-int-96hrf" to existing batch "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:44.300Z
2022-01-09T16:00:44.300Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Added batch request "List Project Services azapp-int-96hrf" to batch. New batch body: <nil>: timestamp=2022-01-09T16:00:44.300Z
2022-01-09T16:00:44.303Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:48 GMT
Server: ESF
Server-Timing: gfet4t7; dur=213
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:44.303Z
2022-01-09T16:00:44.303Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:44.303Z
2022-01-09T16:00:44.303Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:44.303Z
2022-01-09T16:00:44.303Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Adding batch request "List Project Services azapp-int-96hrf" to existing batch "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:44.303Z
2022-01-09T16:00:44.303Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:44 [DEBUG] Added batch request "List Project Services azapp-int-96hrf" to batch. New batch body: <nil>: timestamp=2022-01-09T16:00:44.303Z
2022-01-09T16:00:47.136Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Sending batch "project/azapp-int-96hrf/services" combining 5 requests): timestamp=2022-01-09T16:00:47.136Z
2022-01-09T16:00:47.136Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Listing enabled services for project azapp-int-96hrf: timestamp=2022-01-09T16:00:47.136Z
2022-01-09T16:00:47.137Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:47.136Z
2022-01-09T16:00:47.137Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Instantiating Google Cloud Service Usage client for path https://serviceusage.googleapis.com/: timestamp=2022-01-09T16:00:47.137Z
2022-01-09T16:00:47.137Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:47.137Z
2022-01-09T16:00:47.137Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:47.137Z
2022-01-09T16:00:47.137Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf/services?alt=json&fields=services%2Fname%2CnextPageToken&filter=state%3AENABLED&prettyPrint=false HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:47.137Z
2022-01-09T16:00:47.399Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:51 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "services": [
  ***
   "name": "projects/456439172051/services/cloudresourcemanager.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/compute.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/oslogin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/serviceusage.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sql-component.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sqladmin.googleapis.com"
  ***
 ]
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:47.399Z
2022-01-09T16:00:47.399Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:47.399Z
2022-01-09T16:00:47.399Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:47.399Z
2022-01-09T16:00:47.401Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.cloud_sql_admin_api, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.401Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.cloud_sql, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.401Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.service_usage, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.401Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.cloud_resource, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.401Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.compute_engine_api, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.401Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] [transport] transport: http2Server.HandleStreams failed to read frame: read unix /tmp/plugin252392537->@: use of closed network connection 
2022-01-09T16:00:47.401Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:00:47.402Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4318
2022-01-09T16:00:47.402Z [DEBUG] provider: plugin exited

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # google_cloud_run_service.api will be created
  + resource "google_cloud_run_service" "api" ***
      + autogenerate_revision_name = false
      + id                         = (known after apply)
      + location                   = "us-central1"
      + name                       = "api"
      + project                    = "projects/azapp-int-96hrf"
      + status                     = (known after apply)

2022-01-09T16:00:47.404Z [INFO]  backend/local: apply calling Apply
2022-01-09T16:00:47.404Z [DEBUG] Building and walking apply graph for NormalMode plan
2022-01-09T16:00:47.404Z [DEBUG] Resource state not found for node "google_cloud_run_service.api", instance google_cloud_run_service.api
2022-01-09T16:00:47.404Z [DEBUG] Resource state not found for node "google_project_service.cloud_run", instance google_project_service.cloud_run
      + metadata ***
          + annotations      = (known after apply)
          + generation       = (known after apply)
          + labels           = (known after apply)
          + namespace        = (known after apply)
          + resource_version = (known after apply)
          + self_link        = (known after apply)
          + uid              = (known after apply)
        ***

      + template ***
          + metadata ***
              + annotations      = (known after apply)
              + generation       = (known after apply)
              + labels           = (known after apply)
              + name             = (known after apply)
              + namespace        = (known after apply)
              + resource_version = (known after apply)
              + self_link        = (known after apply)
              + uid              = (known after apply)
            ***

          + spec ***
              + container_concurrency = 100
              + serving_state         = (known after apply)
              + timeout_seconds       = (known after apply)

              + containers ***
                  + image = "***/api:135"

                  + ports ***
                      + container_port = (known after apply)
                      + name           = (known after apply)
                      + protocol       = (known after apply)
                    ***

                  + resources ***
                      + limits   = (known after apply)
                      + requests = (known after apply)
                    ***
                ***
            ***
        ***

      + traffic ***
          + latest_revision = true
          + percent         = 100
        ***
    ***

  # google_project_service.cloud_run will be created
  + resource "google_project_service" "cloud_run" ***
      + disable_dependent_services = true
      + disable_on_destroy         = true
      + id                         = (known after apply)
      + project                    = "projects/azapp-int-96hrf"
      + service                    = "run.googleapis.com"
    ***

Plan: 2 to add, 0 to change, 0 to destroy.
2022-01-09T16:00:47.404Z [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/random"], implied first by random_string.project_id_suffix (expand)
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.cloud_run (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.compute_engine_api (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.cloud_run" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.cloud_resource (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_cloud_run_service.api" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project.default (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.service_usage (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_project_service.cloud_sql_admin_api (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google-beta"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "google_cloud_run_service.api (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/google"]
2022-01-09T16:00:47.404Z [DEBUG] ProviderTransformer: "random_string.project_id_suffix (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"]
2022-01-09T16:00:47.404Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/time"]
2022-01-09T16:00:47.404Z [DEBUG] pruning unused provider["registry.terraform.io/integrations/github"]
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql_admin_api (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_resource (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "local.devit_billing_account_id (expand)" references: []
2022-01-09T16:00:47.404Z [INFO]  ReferenceTransformer: reference not found: "google_project_service.cloud_run#destroy"
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_cloud_run_service.api" references: [google_project_service.cloud_run (expand) google_project_service.cloud_run google_project_service.cloud_run google_project.default (expand) var.docker_image_api]
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_sql (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project.default (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_run (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "local.devit_organization_id (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_cloud_run_service.api (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "random_string.project_id_suffix (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.service_usage (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "local.base_project_name (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google-beta\"]" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/google\"]" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.compute_engine_api (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "var.docker_image_api" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "var.is_prod" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "local.devit_project_folder_id (expand)" references: []
2022-01-09T16:00:47.404Z [DEBUG] ReferenceTransformer: "google_project_service.cloud_run" references: [google_project.default (expand)]
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: google_project_service.cloud_sql (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: local.devit_organization_id (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: random_string.project_id_suffix (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: google_project_service.service_usage (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: local.base_project_name (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: google_project_service.compute_engine_api (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: local.devit_project_folder_id (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: local.devit_billing_account_id (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: provider["registry.terraform.io/hashicorp/random"] is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: google_project_service.cloud_resource (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] pruneUnusedNodes: google_project_service.cloud_sql_admin_api (expand) is no longer needed, removing
2022-01-09T16:00:47.405Z [DEBUG] Starting graph walk: walkApply
2022-01-09T16:00:47.405Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:47.405Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:47.411Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5]
2022-01-09T16:00:47.411Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4349
2022-01-09T16:00:47.411Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5
2022-01-09T16:00:47.423Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:47.423Z
2022-01-09T16:00:47.443Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:47.443Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: plugin address: network=unix address=/tmp/plugin601022180 timestamp=2022-01-09T16:00:47.443Z
2022-01-09T16:00:47.460Z [DEBUG] created provider logger: level=debug
2022-01-09T16:00:47.460Z [INFO]  provider: configuring client automatic mTLS
2022-01-09T16:00:47.466Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5]
2022-01-09T16:00:47.466Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4376
2022-01-09T16:00:47.466Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5
2022-01-09T16:00:47.480Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: configuring server automatic mTLS: timestamp=2022-01-09T16:00:47.480Z
2022-01-09T16:00:47.501Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: plugin address: address=/tmp/plugin012922359 network=unix timestamp=2022-01-09T16:00:47.500Z
2022-01-09T16:00:47.501Z [DEBUG] provider: using plugin: version=5
2022-01-09T16:00:47.519Z [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/google\"]" changed the config value, but that value is unused
2022-01-09T16:00:47.521Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:47.521Z
2022-01-09T16:00:47.521Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:47.521Z
2022-01-09T16:00:47.521Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:47.521Z
2022-01-09T16:00:47.521Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:47.521Z
2022-01-09T16:00:47.521Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:47.521Z
2022-01-09T16:00:47.581Z [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/hashicorp/google-beta\"]" changed the config value, but that value is unused
2022-01-09T16:00:47.582Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:47.582Z
2022-01-09T16:00:47.582Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:47.582Z
2022-01-09T16:00:47.582Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Authenticating using configured Google JSON 'credentials'...: timestamp=2022-01-09T16:00:47.582Z
2022-01-09T16:00:47.582Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO]   -- Scopes: [https://www.googleapis.com/auth/cloud-platform https://www.googleapis.com/auth/userinfo.email]: timestamp=2022-01-09T16:00:47.582Z
2022-01-09T16:00:47.582Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:47.582Z
2022-01-09T16:00:47.678Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Terraform is using this identity: terraform-check-it-in@devit-root-a93k.iam.gserviceaccount.com: timestamp=2022-01-09T16:00:47.678Z
2022-01-09T16:00:47.736Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [INFO] Terraform is using this identity: terraform-check-it-in@devit-root-a93k.iam.gserviceaccount.com: timestamp=2022-01-09T16:00:47.736Z
2022-01-09T16:00:47.737Z [WARN]  Provider "registry.terraform.io/hashicorp/google-beta" produced an invalid plan for google_project_service.cloud_run, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .disable_on_destroy: planned value cty.True for a non-computed attribute
2022-01-09T16:00:47.737Z [INFO]  Starting apply for google_project_service.cloud_run
google_project_service.cloud_run: Creating...
2022-01-09T16:00:47.737Z [DEBUG] google_project_service.cloud_run: applying the planned Create change
2022-01-09T16:00:47.738Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:47 [DEBUG] Creating new batch "List Project Services azapp-int-96hrf" from request "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:00:47.738Z
2022-01-09T16:00:50.740Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Sending batch "project/azapp-int-96hrf/services" combining 1 requests): timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.740Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Listing enabled services for project azapp-int-96hrf: timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.740Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.740Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [INFO] Instantiating Google Cloud Service Usage client for path https://serviceusage.googleapis.com/: timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.741Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.741Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:50.740Z
2022-01-09T16:00:50.741Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:50 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf/services?alt=json&fields=services%2Fname%2CnextPageToken&filter=state%3AENABLED&prettyPrint=false HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:50.741Z
2022-01-09T16:00:51.098Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:51 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:55 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "services": [
  ***
   "name": "projects/456439172051/services/cloudresourcemanager.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/compute.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/oslogin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/serviceusage.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sql-component.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sqladmin.googleapis.com"
  ***
 ]
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:51.098Z
2022-01-09T16:00:51.098Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:51 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:51.098Z
2022-01-09T16:00:51.098Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:51 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:51.098Z
2022-01-09T16:00:51.098Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:51 [DEBUG] Creating new batch "Enable Project Service \"run.googleapis.com\" for project \"azapp-int-96hrf\"" from request "project/azapp-int-96hrf/services:batchEnable": timestamp=2022-01-09T16:00:51.098Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [DEBUG] Sending batch "project/azapp-int-96hrf/services:batchEnable" combining 1 requests): timestamp=2022-01-09T16:00:54.100Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:54.100Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [INFO] Instantiating Google Cloud Service Usage client for path https://serviceusage.googleapis.com/: timestamp=2022-01-09T16:00:54.101Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:54.101Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:54.101Z
2022-01-09T16:00:54.101Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:54 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
POST /v1/projects/azapp-int-96hrf/services/run.googleapis.com:enable?alt=json&prettyPrint=false HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
Content-Length: 3
Content-Type: application/json
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

***

-----------------------------------------------------: timestamp=2022-01-09T16:00:54.101Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:59 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "name": "operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546"
***
-----------------------------------------------------: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Waiting for state to become: [done: true]: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.062Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1beta1/operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546?alt=json HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:00:55.062Z
2022-01-09T16:00:55.224Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:00:59 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
  "name": "operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546",
  "metadata": ***
    "@type": "type.googleapis.com/google.protobuf.Empty"
  ***
***

-----------------------------------------------------: timestamp=2022-01-09T16:00:55.224Z
2022-01-09T16:00:55.225Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:00:55.224Z
2022-01-09T16:00:55.225Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:00:55.224Z
2022-01-09T16:00:55.225Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [DEBUG] Got done: false while polling for operation operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546's status: timestamp=2022-01-09T16:00:55.225Z
2022-01-09T16:00:55.225Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:00:55 [TRACE] Waiting 10s before next try: timestamp=2022-01-09T16:00:55.225Z
google_project_service.cloud_run: Still creating... [10s elapsed]
2022-01-09T16:01:05.232Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:01:05.232Z
2022-01-09T16:01:05.232Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:01:05.232Z
2022-01-09T16:01:05.232Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:01:05.232Z
2022-01-09T16:01:05.232Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1beta1/operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546?alt=json HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:01:05.232Z
2022-01-09T16:01:05.451Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:09 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
  "name": "operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546",
  "metadata": ***
    "@type": "type.googleapis.com/google.protobuf.Empty"
  ***,
  "done": true,
  "response": ***
    "@type": "type.googleapis.com/google.api.serviceusage.v1.EnableServiceResponse",
    "service": ***
      "name": "projects/456439172051/services/run.googleapis.com",
      "config": ***
        "name": "run.googleapis.com",
        "title": "Cloud Run Admin API",
        "documentation": ***
          "summary": "Deploy and manage user provided container images that scale automatically based on incoming requests. The Cloud Run Admin API follows the Knative Serving API specification."
        ***,
        "quota": ***,
        "authentication": ***,
        "usage": ***
          "requirements": [
            "serviceusage.googleapis.com/tos/cloud",
"serviceusage.googleapis.com/billing-enabled"
          ]
        ***,
        "monitoredResources": [
          ***
            "type": "run.googleapis.com/revision",
            "labels": [
              ***
                "key": "cloud.googleapis.com/project"
              ***,
              ***
                "key": "run.googleapis.com/service_name"
              ***,
              ***
                "key": "run.googleapis.com/revision_name"
              ***,
              ***
                "key": "cloud.googleapis.com/location"
              ***,
              ***
                "key": "run.googleapis.com/configuration_name"
              ***,
              ***
                "key": "cloud.googleapis.com/uid"
              ***
            ]
          ***,
          ***
            "type": "cloud_run_revision",
            "labels": [
              ***
                "key": "run.googleapis.com/service_name"
              ***,
              ***
                "key": "run.googleapis.com/revision_name"
              ***,
              ***
                "key": "run.googleapis.com/location"
              ***,
              ***
                "key": "run.googleapis.com/configuration_name"
              ***
            ]
          ***,
          ***
            "type": "cloud_run_billing",
            "labels": [
              ***
                "key": "/resource_id"
              ***,
              ***
                "key": "serving.knative.dev/service"
              ***,
              ***
                "key": "serving.knative.dev/revision"
              ***,
              ***
                "key": "cloud.googleapis.com/location"
              ***,
              ***
                "key": "/arm_experiment_id"
              ***
            ]
          ***
        ],
        "monitoring": ***
          "consumerDestinations": [
            ***
              "monitoredResource": "run.googleapis.com/revision",
              "metrics": [
                "run.googleapis.com/request_count",
                "run.googleapis.com/request_latencies",
                "run.googleapis.com/container/instance_time",
                "run.googleapis.com/container/labelled_instance_time",
                "run.googleapis.com/container/cpu/allocation_time",
                "run.googleapis.com/container/cpu/scaled_usage",
                "run.googleapis.com/container/memory/allocation_time",
                "run.googleapis.com/container/memory/utilization",
                "run.googleapis.com/tenant_project",
                "run.googleapis.com/internal/eventflow_filter/cloudevent_recordedtime_latencies",
                "run.googleapis.com/internal/eventflow_filter/cloudevent_time_latencies",
                "run.googleapis.com/internal/eventflow_filter/transformation_count",
                "run.googleapis.com/internal/eventflow_filter/transformation_latencies",
                "run.googleapis.com/internal/pod_service_client/request_count",
"run.googleapis.com/internal/pod_service_client/request_latencies"
              ]
            ***
          ]
        ***
      ***,
      "state": "ENABLED",
      "parent": "projects/456439172051"
    ***
  ***
***

-----------------------------------------------------: timestamp=2022-01-09T16:01:05.451Z
2022-01-09T16:01:05.451Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:01:05.451Z
2022-01-09T16:01:05.451Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:01:05.451Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Got done: true while polling for operation operations/acf.p2-456439172051-cd194d7c-40f5-4d0b-b5bc-780851f57546's status: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Finished enabling next batch of 1 project services: [run.googleapis.com]: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Verifying that all services are enabled: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Listing enabled services for project azapp-int-96hrf: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [INFO] Instantiating Google Cloud Service Usage client for path https://serviceusage.googleapis.com/: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.452Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf/services?alt=json&fields=services%2Fname%2CnextPageToken&filter=state%3AENABLED&prettyPrint=false HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:01:05.452Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:10 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "services": [
  ***
   "name": "projects/456439172051/services/cloudresourcemanager.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/compute.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/containerregistry.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/logging.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/oslogin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/pubsub.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/run.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/serviceusage.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sql-component.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sqladmin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/storage-api.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/storage-component.googleapis.com"
  ***
 ]
***
-----------------------------------------------------: timestamp=2022-01-09T16:01:05.708Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:01:05.708Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:01:05.709Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [INFO] Instantiating Google Cloud ResourceManager client for path https://cloudresourcemanager.googleapis.com/: timestamp=2022-01-09T16:01:05.709Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:01:05.709Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:01:05.709Z
2022-01-09T16:01:05.709Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf?alt=json&prettyPrint=false HTTP/1.1
Host: cloudresourcemanager.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:01:05.709Z
2022-01-09T16:01:05.811Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:10 GMT
Server: ESF
Server-Timing: gfet4t7; dur=45
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "projectNumber": "456439172051",
 "projectId": "azapp-int-96hrf",
 "lifecycleState": "ACTIVE",
 "name": "azapp-int",
 "createTime": "2022-01-09T14:46:33.331Z",
 "parent": ***
  "type": "folder",
  "id": "109623755031"
 ***
***
-----------------------------------------------------: timestamp=2022-01-09T16:01:05.811Z
2022-01-09T16:01:05.811Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:01:05.811Z
2022-01-09T16:01:05.811Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:01:05.811Z
2022-01-09T16:01:05.811Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:05 [DEBUG] Creating new batch "List Project Services azapp-int-96hrf" from request "project/azapp-int-96hrf/services": timestamp=2022-01-09T16:01:05.811Z
google_project_service.cloud_run: Still creating... [20s elapsed]
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Sending batch "project/azapp-int-96hrf/services" combining 1 requests): timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Listing enabled services for project azapp-int-96hrf: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [INFO] Instantiating Google Cloud Service Usage client for path https://serviceusage.googleapis.com/: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:08.812Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:08 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
GET /v1/projects/azapp-int-96hrf/services?alt=json&fields=services%2Fname%2CnextPageToken&filter=state%3AENABLED&prettyPrint=false HTTP/1.1
Host: serviceusage.googleapis.com
User-Agent: google-api-go-client/0.5 Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google-beta/dev
X-Goog-Api-Client: gl-go/1.16.2 gdcl/20211201
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-01-09T16:01:08.812Z
2022-01-09T16:01:09.063Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Cache-Control: private
Content-Type: application/json; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:13 GMT
Server: ESF
Vary: Origin
Vary: X-Origin
Vary: Referer
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

***
 "services": [
  ***
   "name": "projects/456439172051/services/cloudresourcemanager.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/compute.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/containerregistry.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/logging.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/oslogin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/pubsub.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/run.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/serviceusage.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sql-component.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/sqladmin.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/storage-api.googleapis.com"
  ***,
  ***
   "name": "projects/456439172051/services/storage-component.googleapis.com"
  ***
 ]
***
-----------------------------------------------------: timestamp=2022-01-09T16:01:09.062Z
2022-01-09T16:01:09.063Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: Stopping retries, last request was successful: timestamp=2022-01-09T16:01:09.063Z
2022-01-09T16:01:09.063Z [INFO]  provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:01:09.063Z
2022-01-09T16:01:09.063Z [WARN]  Provider "provider[\"registry.terraform.io/hashicorp/google-beta\"]" produced an unexpected new value for google_project_service.cloud_run, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .project: was cty.StringVal("projects/azapp-int-96hrf"), but now cty.StringVal("azapp-int-96hrf")
2022-01-09T16:01:09.064Z [DEBUG] provider.terraform-provider-google-beta_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] [transport] transport: http2Server.HandleStreams failed to read frame: read unix /tmp/plugin012922359->@: use of closed network connection 
2022-01-09T16:01:09.064Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
google_project_service.cloud_run: Creation complete after 21s [id=azapp-int-96hrf/run.googleapis.com]
2022-01-09T16:01:09.065Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google-beta/4.5.0/linux_amd64/terraform-provider-google-beta_v4.5.0_x5 pid=4376
2022-01-09T16:01:09.065Z [DEBUG] provider: plugin exited
2022-01-09T16:01:09.069Z [WARN]  Provider "registry.terraform.io/hashicorp/google" produced an invalid plan for google_cloud_run_service.api, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .autogenerate_revision_name: planned value cty.False for a non-computed attribute
      - .metadata: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
google_cloud_run_service.api: Creating...
      - .template[0].metadata: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
      - .template[0].spec[0].containers[0].ports: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
      - .template[0].spec[0].containers[0].resources: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
2022-01-09T16:01:09.069Z [INFO]  Starting apply for google_cloud_run_service.api
2022-01-09T16:01:09.070Z [DEBUG] google_cloud_run_service.api: applying the planned Create change
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "status" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.metadata" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.ports" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.resources" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.resources" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.ports" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.ports" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.resources" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.ports" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.070Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.spec.0.containers.0.resources" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "template.0.metadata" from ComputedKeys: timestamp=2022-01-09T16:01:09.070Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] setting computed for "metadata" from ComputedKeys: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Creating new Service: map[string]interface ***"apiVersion":"serving.knative.dev/v1", "kind":"Service", "metadata":map[string]interface ***"name":"api"***, "spec":map[string]interface ***"template":map[string]interface ***"spec":map[string]interface ***"containerConcurrency":100, "containers":[]interface ***map[string]interface ***"image":"***/api:135"***, "traffic":[]interface ***map[string]interface ***"latestRevision":true, "percent":100***: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Waiting for state to become: [success]: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: starting RoundTrip retry loop: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: request attempt 0: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.071Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Google API Request Details:
---[ REQUEST ]---------------------------------------
POST /apis/serving.knative.dev/v1/namespaces/projects/azapp-int-96hrf/services?alt=json HTTP/1.1
Host: us-central1-run.googleapis.com
User-Agent: Terraform/1.1.3 (+https://www.terraform.io) Terraform-Plugin-SDK/2.5.0 terraform-provider-google/dev
Content-Length: 279
Content-Type: application/json
Accept-Encoding: gzip

***
 "apiVersion": "serving.knative.dev/v1",
 "kind": "Service",
 "metadata": ***
  "name": "api"
 ***,
 "spec": ***
  "template": ***
   "spec": ***
    "containerConcurrency": 100,
    "containers": [
     ***
      "image": "***/api:135"
     ***
    ]
   ***
  ***,
  "traffic": [
   ***
    "latestRevision": true,
    "percent": 100
   ***
  ]
 ***
***

-----------------------------------------------------: timestamp=2022-01-09T16:01:09.071Z
2022-01-09T16:01:09.318Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Google API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 404 Not Found
Content-Length: 1642
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Content-Type: text/html; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:13 GMT
Server: ESF
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

<!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  <title>Error 404 (Not Found)!!1</title>
  <style>
    ****margin:0;padding:0***html,code***font:15px/22px arial,sans-serif***html***background:#fff;color:#222;padding:15px***body***margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px**** > body***background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px***p***margin:11px 0 22px;overflow:hidden***ins***color:#777;text-decoration:none***a img***border:0***@media screen and (max-width:772px)***body***background:none;margin-top:0;max-width:none;padding-right:0***#logo***background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px***@media only screen and (min-resolution:192dpi)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0***@media only screen and (-webkit-min-device-pixel-ratio:2)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%***#logo***display:inline-block;height:54px;width:150px***
  </style>
  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  <p><b>404.</b> <ins>That’s an error.</ins>
  <p>The requested URL <code>/apis/serving.knative.dev/v1/namespaces/projects/azapp-int-96hrf/services?alt=json</code> was not found on this server.  <ins>That’s all we know.</ins>

-----------------------------------------------------: timestamp=2022-01-09T16:01:09.318Z
2022-01-09T16:01:09.318Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: Stopping retries, last request failed with non-retryable error: googleapi: got HTTP response code 404 with body: HTTP/2.0 404 Not Found
Content-Length: 1642
Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"
Content-Type: text/html; charset=UTF-8
Date: Sun, 09 Jan 2022 16:01:13 GMT
Server: ESF
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 0

<!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  <title>Error 404 (Not Found)!!1</title>
  <style>
    ****margin:0;padding:0***html,code***font:15px/22px arial,sans-serif***html***background:#fff;color:#222;padding:15px***body***margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px**** > body***background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px***p***margin:11px 0 22px;overflow:hidden***ins***color:#777;text-decoration:none***a img***border:0***@media screen and (max-width:772px)***body***background:none;margin-top:0;max-width:none;padding-right:0***#logo***background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px***@media only screen and (min-resolution:192dpi)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0***@media only screen and (-webkit-min-device-pixel-ratio:2)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%***#logo***display:inline-block;height:54px;width:150px***
  </style>
  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  <p><b>404.</b> <ins>That’s an error.</ins>
  <p>The requested URL <code>/apis/serving.knative.dev/v1/namespaces/projects/azapp-int-96hrf/services?alt=json</code> was not found on this server.  <ins>That’s all we know.</ins>: timestamp=2022-01-09T16:01:09.318Z
2022-01-09T16:01:09.318Z [INFO]  provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] Retry Transport: Returning after 1 attempts: timestamp=2022-01-09T16:01:09.318Z
Error: -09T16:01:09.319Z [ERROR] vertex "google_cloud_run_service.api" error: Error creating Service: googleapi: got HTTP response code 404 with body: <!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  <title>Error 404 (Not Found)!!1</title>
  <style>
    ****margin:0;padding:0***html,code***font:15px/22px arial,sans-serif***html***background:#fff;color:#222;padding:15px***body***margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px**** > body***background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px***p***margin:11px 0 22px;overflow:hidden***ins***color:#777;text-decoration:none***a img***border:0***@media screen and (max-width:772px)***body***background:none;margin-top:0;max-width:none;padding-right:0***#logo***background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px***@media only screen and (min-resolution:192dpi)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0***@media only screen and (-webkit-min-device-pixel-ratio:2)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%***#logo***display:inline-block;height:54px;width:150px***
  </style>
  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  <p><b>404.</b> <ins>That’s an error.</ins>
  <p>The requested URL <code>/apis/serving.knative.dev/v1/namespaces/projects/azapp-int-96hrf/services?alt=json</code> was not found on this server.  <ins>That’s all we know.</ins>
â•·
│ Error: Error creating Service: googleapi: got HTTP response code 404 with body: <!DOCTYPE html>
│ <html lang=en>
│   <meta charset=utf-8>
│   <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
│   <title>Error 404 (Not Found)!!1</title>
│   <style>
│     ****margin:0;padding:0***html,code***font:15px/22px arial,sans-serif***html***background:#fff;color:#222;padding:15px***body***margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px**** > body***background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px***p***margin:11px 0 22px;overflow:hidden***ins***color:#777;text-decoration:none***a img***border:0***@media screen and (max-width:772px)***body***background:none;margin-top:0;max-width:none;padding-right:0***#logo***background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px***@media only screen and (min-resolution:192dpi)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0***@media only screen and (-webkit-min-device-pixel-ratio:2)***#logo***background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%***#logo***display:inline-block;height:54px;width:150px***
│   </style>
│   <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
│   <p><b>404.</b> <ins>That’s an error.</ins>
│   <p>The requested URL <code>/apis/serving.knative.dev/v1/namespaces/projects/azapp-int-96hrf/services?alt=json</code> was not found on this server.  <ins>That’s all we know.</ins>
│ 
│ 
│   with google_cloud_run_service.api,
│   on cloud-run.tf line 8, in resource "google_cloud_run_service" "api":
│    8: resource "google_cloud_run_service" "api" ***
│ 
╵
2022-01-09T16:01:09.783Z [DEBUG] provider.terraform-provider-google_v4.5.0_x5: 2022/01/09 16:01:09 [DEBUG] [transport] transport: http2Server.HandleStreams failed to read frame: read unix /tmp/plugin601022180->@: use of closed network connection 
2022-01-09T16:01:09.783Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-01-09T16:01:09.784Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/google/4.5.0/linux_amd64/terraform-provider-google_v4.5.0_x5 pid=4349
2022-01-09T16:01:09.784Z [DEBUG] provider: plugin exited
Error: Process completed with exit code 1.

Panic Output

Expected Behavior

Cloud Run Service started

Actual Behavior

I got an error

Steps to Reproduce

I'm not sure if it matters, but I'm using a service account from another account to do this creation. It created the project, so it should have owner permission for the project.

  1. terraform apply

Important Factoids

References

shuyama1 commented 2 years ago

Hi @ScottPierce! I believe the problem here is also project id. Can you try using google_project.default.project_id instead and see if that will fix your issue?

ScottPierce commented 2 years ago

That was the problem! I can't believe id isn't the project I'd. Thanks!

github-actions[bot] commented 2 years 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.