Removing rotation_configuration from a token resource causes panic
Bug Report
Removing an existing(applied) rotation_config from any token resource causes a panic caused by segmentation violation.
To reproduce apply the given terraform config, and then delete or comment the rotation_configuration block.
Relevant Terraform Configuration
terraform {
required_providers {
gitlab = {
source = "gitlabhq/gitlab"
}
}
}
provider "gitlab" {}
data "gitlab_current_user" "this" {}
resource "gitlab_personal_access_token" "this" {
user_id = data.gitlab_current_user.this.id
name = "Example personal access token"
scopes = ["api"]
rotation_configuration = {
expiration_days = 364
rotate_before_days = 364
}
}
Relevant Terraform Command
terraform plan/apply/destroy
Relevant Log Output
stdout
tf plan
╷
│ Error: Plugin did not respond
│
│ The plugin encountered an error, and failed to respond to the
│ plugin6.(*GRPCProvider).PlanResourceChange call. The plugin logs may contain more
│ details.
╵
Stack trace from the terraform-provider-gitlab_v17.5.0 plugin:
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0xe889a0]
goroutine 73 [running]:
gitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider.(*gitlabPersonalAccessTokenResource).ModifyPlan(0xc00071a0a0, {0x1381a88, 0xc0006351d0}, {{{{0x1387ba0, 0xc00082a8a0}, {0xfd8f20, 0xc00082a5d0}}, {0x138af20, 0xc000521450}}, {{{0x1387ba0, ...}, ...}, ...}, ...}, ...)
gitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider/resource_gitlab_personal_access_token.go:284 +0x740
github.com/hashicorp/terraform-plugin-framework/internal/fwserver.(*Server).PlanResourceChange(0xc0002781e0, {0x1381a88, 0xc0006351d0}, 0xc0002ec8a0, 0xc0007cf528)
github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:303 +0x19d5
github.com/hashicorp/terraform-plugin-framework/internal/proto6server.(*Server).PlanResourceChange(0xc0002781e0, {0x1381a88?, 0xc0006350e0?}, 0xc0000d2780)
github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/proto6server/server_planresourcechange.go:64 +0x45c
github.com/hashicorp/terraform-plugin-mux/tf6muxserver.(*muxServer).PlanResourceChange(0xc000285880, {0x1381a88?, 0xc000634e10?}, 0xc0000d2780)
github.com/hashicorp/terraform-plugin-mux@v0.16.0/tf6muxserver/mux_server_PlanResourceChange.go:73 +0x2ad
github.com/hashicorp/terraform-plugin-go/tfprotov6/tf6server.(*server).PlanResourceChange(0xc00027e140, {0x1381a88?, 0xc000634300?}, 0xc0001d0180)
github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:825 +0x3dc
github.com/hashicorp/terraform-plugin-go/tfprotov6/internal/tfplugin6._Provider_PlanResourceChange_Handler({0x114b180, 0xc00027e140}, {0x1381a88, 0xc000634300}, 0xc0001d0100, 0x0)
github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tfplugin6/tfplugin6_grpc.pb.go:527 +0x1a6
google.golang.org/grpc.(*Server).processUnaryRPC(0xc0001a4c00, {0x1381a88, 0xc000634240}, {0x1389340, 0xc00016e1a0}, 0xc00073eb40, 0xc0001319b0, 0x1a961c0, 0x0)
google.golang.org/grpc@v1.66.2/server.go:1394 +0xe2b
google.golang.org/grpc.(*Server).handleStream(0xc0001a4c00, {0x1389340, 0xc00016e1a0}, 0xc00073eb40)
google.golang.org/grpc@v1.66.2/server.go:1805 +0xe8b
google.golang.org/grpc.(*Server).serveStreams.func2.1()
google.golang.org/grpc@v1.66.2/server.go:1029 +0x7f
created by google.golang.org/grpc.(*Server).serveStreams.func2 in goroutine 52
google.golang.org/grpc@v1.66.2/server.go:1040 +0x125
Error: The terraform-provider-gitlab_v17.5.0 plugin crashed!
This is always indicative of a bug within the plugin. It would be immensely
helpful if you could report the crash with the plugin's maintainers so that it
can be fixed. The output above should help diagnose the issue.
These are the json debug logs of the `terraform` command output:
{"@level":"info","@message":"Terraform version: 1.9.8","@timestamp":"2024-10-29T11:32:54.856800+01:00"}
{"@level":"debug","@message":"using github.com/hashicorp/go-tfe v1.58.0","@timestamp":"2024-10-29T11:32:54.856908+01:00"}
{"@level":"debug","@message":"using github.com/hashicorp/hcl/v2 v2.20.0","@timestamp":"2024-10-29T11:32:54.856917+01:00"}
{"@level":"debug","@message":"using github.com/hashicorp/terraform-svchost v0.1.1","@timestamp":"2024-10-29T11:32:54.856921+01:00"}
{"@level":"debug","@message":"using github.com/zclconf/go-cty v1.14.4","@timestamp":"2024-10-29T11:32:54.856927+01:00"}
{"@level":"info","@message":"Go runtime version: go1.22.7","@timestamp":"2024-10-29T11:32:54.856931+01:00"}
{"@level":"info","@message":"CLI args: []string{\"terraform\", \"plan\"}","@timestamp":"2024-10-29T11:32:54.856937+01:00"}
{"@level":"trace","@message":"Stdout is a terminal of width 91","@timestamp":"2024-10-29T11:32:54.856947+01:00"}
{"@level":"trace","@message":"Stderr is a terminal of width 91","@timestamp":"2024-10-29T11:32:54.856953+01:00"}
{"@level":"trace","@message":"Stdin is a terminal","@timestamp":"2024-10-29T11:32:54.856957+01:00"}
{"@level":"debug","@message":"Attempting to open CLI config file: MYLOCALPATH/terraform-provider-gitlab/playground/.terraformrc","@timestamp":"2024-10-29T11:32:54.856963+01:00"}
{"@level":"info","@message":"Loading CLI configuration from MYLOCALPATH/terraform-provider-gitlab/playground/.terraformrc","@timestamp":"2024-10-29T11:32:54.856981+01:00"}
{"@level":"debug","@message":"Not reading CLI config directory because config location is overridden by environment variable","@timestamp":"2024-10-29T11:32:54.857029+01:00"}
{"@level":"debug","@message":"Explicit provider installation configuration is set","@timestamp":"2024-10-29T11:32:54.857060+01:00"}
{"@level":"trace","@message":"Selected provider installation method cliconfig.ProviderInstallationDirect with includes [] and excludes []","@timestamp":"2024-10-29T11:32:54.857082+01:00"}
{"@level":"info","@message":"CLI command args: []string{\"plan\"}","@timestamp":"2024-10-29T11:32:54.857322+01:00"}
{"@level":"trace","@message":"Meta.Backend: no config given or present on disk, so returning nil config","@timestamp":"2024-10-29T11:32:54.857891+01:00"}
{"@level":"trace","@message":"Meta.Backend: backend has not previously been initialized in this working directory","@timestamp":"2024-10-29T11:32:54.857903+01:00"}
{"@level":"trace","@message":"Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend)","@timestamp":"2024-10-29T11:32:54.857906+01:00"}
{"@level":"trace","@message":"Meta.Backend: instantiated backend of type \u003cnil\u003e","@timestamp":"2024-10-29T11:32:54.857909+01:00"}
{"@level":"trace","@message":"providercache.fillMetaCache: scanning directory .terraform/providers","@timestamp":"2024-10-29T11:32:54.858116+01:00"}
{"@level":"trace","@message":"getproviders.SearchLocalDirectory: found registry.terraform.io/gitlabhq/gitlab v17.4.0 for linux_amd64 at .terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.4.0/linux_amd64","@timestamp":"2024-10-29T11:32:54.858189+01:00"}
{"@level":"trace","@message":"getproviders.SearchLocalDirectory: found registry.terraform.io/gitlabhq/gitlab v17.5.0 for linux_amd64 at .terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64","@timestamp":"2024-10-29T11:32:54.858246+01:00"}
{"@level":"trace","@message":"providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.4.0/linux_amd64 as a candidate package for registry.terraform.io/gitlabhq/gitlab 17.4.0","@timestamp":"2024-10-29T11:32:54.858268+01:00"}
{"@level":"trace","@message":"providercache.fillMetaCache: including .terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64 as a candidate package for registry.terraform.io/gitlabhq/gitlab 17.5.0","@timestamp":"2024-10-29T11:32:54.858273+01:00"}
{"@level":"debug","@message":"checking for provisioner in \".\"","@timestamp":"2024-10-29T11:32:54.871309+01:00"}
{"@level":"debug","@message":"checking for provisioner in \"MYHOME/.local/share/mise/installs/terraform/1.9.8/bin\"","@timestamp":"2024-10-29T11:32:54.871340+01:00"}
{"@level":"trace","@message":"Meta.Backend: backend \u003cnil\u003e does not support operations, so wrapping it in a local backend","@timestamp":"2024-10-29T11:32:54.871358+01:00"}
{"@level":"info","@message":"backend/local: starting Plan operation","@timestamp":"2024-10-29T11:32:54.871602+01:00"}
{"@level":"trace","@message":"backend/local: requesting state manager for workspace \"default\"","@timestamp":"2024-10-29T11:32:54.871637+01:00"}
{"@level":"trace","@message":"backend/local: state manager for workspace \"default\" will:\n - read initial snapshot from terraform.tfstate\n - write new snapshots to terraform.tfstate\n - create any backup at terraform.tfstate.backup","@timestamp":"2024-10-29T11:32:54.871640+01:00"}
{"@level":"trace","@message":"backend/local: requesting state lock for workspace \"default\"","@timestamp":"2024-10-29T11:32:54.871643+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: preparing to manage state snapshots at terraform.tfstate","@timestamp":"2024-10-29T11:32:54.871707+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: existing snapshot has lineage \"9b0227ca-f926-598e-9bac-eb17652125bb\" serial 36","@timestamp":"2024-10-29T11:32:54.871926+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: locking terraform.tfstate using fcntl flock","@timestamp":"2024-10-29T11:32:54.871930+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: writing lock metadata to .terraform.tfstate.lock.info","@timestamp":"2024-10-29T11:32:54.871936+01:00"}
{"@level":"trace","@message":"backend/local: reading remote state for workspace \"default\"","@timestamp":"2024-10-29T11:32:54.872001+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: reading latest snapshot from terraform.tfstate","@timestamp":"2024-10-29T11:32:54.872003+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: read snapshot with lineage \"9b0227ca-f926-598e-9bac-eb17652125bb\" serial 36","@timestamp":"2024-10-29T11:32:54.872109+01:00"}
{"@level":"trace","@message":"backend/local: populating backendrun.LocalRun for current working directory","@timestamp":"2024-10-29T11:32:54.872112+01:00"}
{"@level":"trace","@message":"Config.VerifyDependencySelections: provider registry.terraform.io/gitlabhq/gitlab has 17.5.0 to satisfy \"\"","@timestamp":"2024-10-29T11:32:54.872208+01:00"}
{"@level":"trace","@message":"terraform.NewContext: starting","@timestamp":"2024-10-29T11:32:54.872215+01:00"}
{"@level":"trace","@message":"terraform.NewContext: complete","@timestamp":"2024-10-29T11:32:54.872217+01:00"}
{"@level":"trace","@message":"backend/local: requesting interactive input, if necessary","@timestamp":"2024-10-29T11:32:54.872220+01:00"}
{"@level":"trace","@message":"LoadSchemas: retrieving schema for provider type \"registry.terraform.io/gitlabhq/gitlab\"","@timestamp":"2024-10-29T11:32:54.872227+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Initializing provider \"registry.terraform.io/gitlabhq/gitlab\" to read its schema","@timestamp":"2024-10-29T11:32:54.872230+01:00"}
{"@level":"debug","@message":"created provider logger","@timestamp":"2024-10-29T11:32:54.872245+01:00","level":1}
{"@level":"info","@message":"configuring client automatic mTLS","@module":"provider","@timestamp":"2024-10-29T11:32:54.872262+01:00"}
{"@level":"debug","@message":"starting plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.877320+01:00","args":[".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"],"path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"debug","@message":"plugin started","@module":"provider","@timestamp":"2024-10-29T11:32:54.877725+01:00","path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0","pid":210539}
{"@level":"debug","@message":"waiting for RPC address","@module":"provider","@timestamp":"2024-10-29T11:32:54.877743+01:00","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"info","@message":"configuring server automatic mTLS","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.882683+01:00","timestamp":"2024-10-29T11:32:54.882+0100"}
{"@level":"debug","@message":"using plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.890427+01:00","version":6}
{"@level":"debug","@message":"plugin address","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.890533+01:00","address":"/tmp/plugin2594587028","network":"unix","timestamp":"2024-10-29T11:32:54.890+0100"}
{"@level":"trace","@message":"GRPCProvider.v6: GetProviderSchema","@timestamp":"2024-10-29T11:32:54.896138+01:00"}
{"@level":"trace","@message":"waiting for stdio data","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:54.896361+01:00"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:522","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.897012+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.896+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.897031+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.896+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.897060+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.896+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:110","@level":"trace","@message":"Getting provider schema","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897071+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897106+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pipeline_trigger","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897120+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_jira","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897160+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_freeze_period","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897180+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_label","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897192+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_variable","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897218+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_system_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897241+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_mattermost","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897267+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_cluster_agent","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897288+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_slack","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897340+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_instance_cluster","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897375+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_badge","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897398+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897470+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_sshkey","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897491+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_badge","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897511+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_project_file_template","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897532+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_pipelines_email","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897562+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_deploy_key","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897575+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_ldap_link","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897590+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_pipelines_email","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897604+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_custom_attribute","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897621+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_application_settings","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897883+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_microsoft_teams","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897920+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_gpgkey","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897934+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_label","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897957+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_emails_on_push","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897975+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_membership","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.897992+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_slack","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.897+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898036+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_github","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898053+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_custom_attribute","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898075+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_share_group","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898094+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898214+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_label","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898245+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_cluster_agent_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898265+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_github","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898281+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_cluster","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898326+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_topic","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898342+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_tag","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898390+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_deploy_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898412+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_runner","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898435+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_issue_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898465+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_instance_variable","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898490+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_microsoft_teams","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898529+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_share_group","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898541+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_external_wiki","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898569+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_runner_enablement","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898583+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_release_link","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898603+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_external_wiki","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898617+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_mirror","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898795+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_saml_link","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898822+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898844+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_jira","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.898888+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_approval_rule","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899196+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_branch","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899228+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_cluster","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899250+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_emails_on_push","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899283+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899324+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_custom_attribute","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899362+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_repository_file","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899395+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_membership","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899430+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_milestone","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899465+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_variable","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899505+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_deploy_key_enable","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899539+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_issue","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.898+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:128","@level":"trace","@message":"Found resource type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899574+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pipeline_schedule_variable","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899609+01:00","tf_data_source_type":"gitlab_branch","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899647+01:00","tf_data_source_type":"gitlab_user_sshkeys","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899685+01:00","tf_data_source_type":"gitlab_instance_variables","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899713+01:00","tf_data_source_type":"gitlab_repository_tree","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899840+01:00","tf_data_source_type":"gitlab_project_hook","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899883+01:00","tf_data_source_type":"gitlab_group_subgroups","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.899928+01:00","tf_data_source_type":"gitlab_group_variables","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900132+01:00","tf_data_source_type":"gitlab_groups","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900154+01:00","tf_data_source_type":"gitlab_cluster_agents","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900169+01:00","tf_data_source_type":"gitlab_repository_file","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900184+01:00","tf_data_source_type":"gitlab_release_link","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900199+01:00","tf_data_source_type":"gitlab_group_hooks","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900231+01:00","tf_data_source_type":"gitlab_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900245+01:00","tf_data_source_type":"gitlab_instance_deploy_keys","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900260+01:00","tf_data_source_type":"gitlab_project_tag","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900275+01:00","tf_data_source_type":"gitlab_project_issue","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900289+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900310+01:00","tf_data_source_type":"gitlab_project_branches","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900329+01:00","tf_data_source_type":"gitlab_instance_variable","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900343+01:00","tf_data_source_type":"gitlab_project_issues","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900361+01:00","tf_data_source_type":"gitlab_project_hooks","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900380+01:00","tf_data_source_type":"gitlab_group","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.899+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900398+01:00","tf_data_source_type":"gitlab_group_variable","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900413+01:00","tf_data_source_type":"gitlab_cluster_agent","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900433+01:00","tf_data_source_type":"gitlab_users","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900449+01:00","tf_data_source_type":"gitlab_project_variables","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900466+01:00","tf_data_source_type":"gitlab_project_milestone","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900484+01:00","tf_data_source_type":"gitlab_group_membership","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900499+01:00","tf_data_source_type":"gitlab_projects","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900524+01:00","tf_data_source_type":"gitlab_project_variable","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900538+01:00","tf_data_source_type":"gitlab_release_links","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900552+01:00","tf_data_source_type":"gitlab_project_tags","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900566+01:00","tf_data_source_type":"gitlab_project_membership","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900581+01:00","tf_data_source_type":"gitlab_project_milestones","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900595+01:00","tf_data_source_type":"gitlab_project","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:137","@level":"trace","@message":"Found data source type","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.900658+01:00","tf_data_source_type":"gitlab_group_hook","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.900+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.901733+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:360","@level":"trace","@message":"Checking ProviderSchema lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901778+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:371","@level":"trace","@message":"Calling provider defined Provider Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901801+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:373","@level":"trace","@message":"Called provider defined Provider Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901821+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901841+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901860+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:348","@level":"trace","@message":"Calling provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901880+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:350","@level":"trace","@message":"Called provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901899+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:521","@level":"trace","@message":"Calling provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901922+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:523","@level":"trace","@message":"Called provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901940+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901967+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_application","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.901987+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_branch_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902007+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902025+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902045+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902063+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902083+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902102+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902124+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902143+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902163+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902186+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902204+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902224+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902242+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902268+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_member_role","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902289+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pages_domain","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902312+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902334+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902354+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902382+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902402+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.901+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902426+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902448+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902473+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902495+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902519+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902540+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902565+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902590+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902610+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_tag_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902631+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902651+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_runner","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902677+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902696+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902715+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902734+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902754+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902780+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902799+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902820+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902839+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902857+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902874+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902891+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902918+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902944+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902961+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.902981+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903004+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903022+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903043+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903062+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903083+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903102+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903121+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903143+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903162+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903181+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903205+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903226+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903245+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903263+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903283+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_branch_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903309+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_branch_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903341+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903371+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903390+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903417+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903437+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903460+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903482+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903506+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903526+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903548+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903567+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903585+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903604+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pages_domain","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903622+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_pages_domain","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903644+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903667+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903685+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903703+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903720+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903737+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_hook","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903756+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_tag_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903773+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_tag_protection","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903794+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_application","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903823+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_application","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903840+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903857+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903874+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_member_role","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903891+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_member_role","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903908+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903925+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.902+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903946+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903963+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:640","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.903980+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_runner","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:642","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904000+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_resource_type":"gitlab_user_runner","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:181","@level":"trace","@message":"Checking DataSourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904019+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904040+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:192","@level":"trace","@message":"Calling provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904056+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:194","@level":"trace","@message":"Called provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904073+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904092+01:00","tf_data_source_type":"gitlab_application","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904110+01:00","tf_data_source_type":"gitlab_compliance_framework","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904128+01:00","tf_data_source_type":"gitlab_group_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904146+01:00","tf_data_source_type":"gitlab_group_provisioned_users","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904164+01:00","tf_data_source_type":"gitlab_group_service_account","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904182+01:00","tf_data_source_type":"gitlab_metadata","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904201+01:00","tf_data_source_type":"gitlab_pipeline_schedule","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904219+01:00","tf_data_source_type":"gitlab_pipeline_schedules","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904246+01:00","tf_data_source_type":"gitlab_project_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904265+01:00","tf_data_source_type":"gitlab_project_merge_request","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904291+01:00","tf_data_source_type":"gitlab_project_protected_branch","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904314+01:00","tf_data_source_type":"gitlab_project_protected_branches","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904340+01:00","tf_data_source_type":"gitlab_project_protected_tag","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904377+01:00","tf_data_source_type":"gitlab_project_protected_tags","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904397+01:00","tf_data_source_type":"gitlab_release","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904417+01:00","tf_data_source_type":"gitlab_release","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904448+01:00","tf_data_source_type":"gitlab_release","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904466+01:00","tf_data_source_type":"gitlab_application","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904487+01:00","tf_data_source_type":"gitlab_application","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904513+01:00","tf_data_source_type":"gitlab_project_merge_request","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904537+01:00","tf_data_source_type":"gitlab_project_merge_request","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904556+01:00","tf_data_source_type":"gitlab_project_protected_tag","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904575+01:00","tf_data_source_type":"gitlab_project_protected_tag","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904596+01:00","tf_data_source_type":"gitlab_pipeline_schedules","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904618+01:00","tf_data_source_type":"gitlab_pipeline_schedules","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904637+01:00","tf_data_source_type":"gitlab_project_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904655+01:00","tf_data_source_type":"gitlab_project_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904675+01:00","tf_data_source_type":"gitlab_project_protected_branch","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904694+01:00","tf_data_source_type":"gitlab_project_protected_branch","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904713+01:00","tf_data_source_type":"gitlab_project_protected_tags","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904731+01:00","tf_data_source_type":"gitlab_project_protected_tags","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904750+01:00","tf_data_source_type":"gitlab_compliance_framework","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904772+01:00","tf_data_source_type":"gitlab_compliance_framework","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904791+01:00","tf_data_source_type":"gitlab_group_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904812+01:00","tf_data_source_type":"gitlab_group_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904831+01:00","tf_data_source_type":"gitlab_pipeline_schedule","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904850+01:00","tf_data_source_type":"gitlab_pipeline_schedule","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904873+01:00","tf_data_source_type":"gitlab_group_provisioned_users","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904890+01:00","tf_data_source_type":"gitlab_group_provisioned_users","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904907+01:00","tf_data_source_type":"gitlab_metadata","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904926+01:00","tf_data_source_type":"gitlab_metadata","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904944+01:00","tf_data_source_type":"gitlab_project_protected_branches","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904960+01:00","tf_data_source_type":"gitlab_project_protected_branches","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:311","@level":"trace","@message":"Calling provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904978+01:00","tf_data_source_type":"gitlab_group_service_account","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:313","@level":"trace","@message":"Called provider defined DataSource Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.904995+01:00","tf_data_source_type":"gitlab_group_service_account","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_functions.go:124","@level":"trace","@message":"Checking FunctionTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.905012+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.903+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.905036+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":7,"tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.904+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/server_capabilities.go:27","@level":"trace","@message":"Announced server capabilities","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.905069+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","tf_server_capability_get_provider_schema_optional":true,"tf_server_capability_move_resource_state":true,"tf_server_capability_plan_destroy":true,"timestamp":"2024-10-29T11:32:54.904+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:541","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.905124+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b7a4fc8f-b502-b3f2-de47-a6a515e653a3","tf_rpc":"GetProviderSchema","timestamp":"2024-10-29T11:32:54.905+0100"}
{"@level":"trace","@message":"GRPCProvider.v6: Close","@timestamp":"2024-10-29T11:32:54.914138+01:00"}
{"@level":"debug","@message":"received EOF, stopping recv loop","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:54.914760+01:00","err":"rpc error: code = Unavailable desc = error reading from server: EOF"}
{"@level":"info","@message":"plugin process exited","@module":"provider","@timestamp":"2024-10-29T11:32:54.916496+01:00","id":"210539","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"debug","@message":"plugin exited","@module":"provider","@timestamp":"2024-10-29T11:32:54.916545+01:00"}
{"@level":"trace","@message":"Context.Input: Prompting for provider arguments","@timestamp":"2024-10-29T11:32:54.916556+01:00"}
{"@level":"trace","@message":"Context.Input: Provider provider.gitlab declared at main.tf:9,1-18","@timestamp":"2024-10-29T11:32:54.916582+01:00"}
{"@level":"trace","@message":"Context.Input: Input for provider.gitlab: map[string]cty.Value{}","@timestamp":"2024-10-29T11:32:54.916611+01:00"}
{"@level":"trace","@message":"backend/local: running validation operation","@timestamp":"2024-10-29T11:32:54.916615+01:00"}
{"@level":"trace","@message":"LoadSchemas: retrieving schema for provider type \"registry.terraform.io/gitlabhq/gitlab\"","@timestamp":"2024-10-29T11:32:54.916637+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.916642+01:00"}
{"@level":"debug","@message":"Building and walking validate graph","@timestamp":"2024-10-29T11:32:54.916645+01:00"}
{"@level":"trace","@message":"building graph for walkValidate","@timestamp":"2024-10-29T11:32:54.916654+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ConfigTransformer","@timestamp":"2024-10-29T11:32:54.916660+01:00"}
{"@level":"trace","@message":"ConfigTransformer: Starting for path:","@timestamp":"2024-10-29T11:32:54.916668+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ConfigTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n ------","@timestamp":"2024-10-29T11:32:54.916683+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RootVariableTransformer","@timestamp":"2024-10-29T11:32:54.916687+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RootVariableTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916693+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ModuleVariableTransformer","@timestamp":"2024-10-29T11:32:54.916696+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ModuleVariableTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916700+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.variableValidationTransformer","@timestamp":"2024-10-29T11:32:54.916702+01:00"}
{"@level":"trace","@message":"variableValidationTransformer: adding validation nodes for any existing variable evaluation nodes","@timestamp":"2024-10-29T11:32:54.916705+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.variableValidationTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916716+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.LocalTransformer","@timestamp":"2024-10-29T11:32:54.916718+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.LocalTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916723+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OutputTransformer","@timestamp":"2024-10-29T11:32:54.916725+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OutputTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916729+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.checkTransformer","@timestamp":"2024-10-29T11:32:54.916732+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.checkTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916741+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanResourceInstanceTransformer","@timestamp":"2024-10-29T11:32:54.916744+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916749+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.StateTransformer","@timestamp":"2024-10-29T11:32:54.916752+01:00"}
{"@level":"trace","@message":"StateTransformer: pointless no-op call, creating no nodes at all","@timestamp":"2024-10-29T11:32:54.916754+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.StateTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916758+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachStateTransformer","@timestamp":"2024-10-29T11:32:54.916761+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachStateTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916766+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanOutputTransformer","@timestamp":"2024-10-29T11:32:54.916769+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanOutputTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916772+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachResourceConfigTransformer","@timestamp":"2024-10-29T11:32:54.916775+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching to \"gitlab_personal_access_token.this\" (*terraform.NodeValidatableResource) config from hcl.Range{Filename:\"main.tf\", Start:hcl.Pos{Line:15, Column:1, Byte:158}, End:hcl.Pos{Line:15, Column:47, Byte:204}}","@timestamp":"2024-10-29T11:32:54.916787+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching provider meta configs to gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:54.916792+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching to \"data.gitlab_current_user.this\" (*terraform.NodeValidatableResource) config from hcl.Range{Filename:\"main.tf\", Start:hcl.Pos{Line:11, Column:1, Byte:118}, End:hcl.Pos{Line:11, Column:34, Byte:151}}","@timestamp":"2024-10-29T11:32:54.916797+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching provider meta configs to data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:54.916800+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachResourceConfigTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916804+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.graphTransformerMulti","@timestamp":"2024-10-29T11:32:54.916807+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.externalProviderTransformer","@timestamp":"2024-10-29T11:32:54.916809+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.externalProviderTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n ------","@timestamp":"2024-10-29T11:32:54.916815+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer","@timestamp":"2024-10-29T11:32:54.916820+01:00"}
{"@level":"trace","@message":"ProviderConfigTransformer: attaching to \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" provider configuration from main.tf:9,1-18","@timestamp":"2024-10-29T11:32:54.916834+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.916841+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer","@timestamp":"2024-10-29T11:32:54.916845+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916860+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer","@timestamp":"2024-10-29T11:32:54.916863+01:00"}
{"@level":"trace","@message":"ProviderTransformer: exact match for provider[\"registry.terraform.io/gitlabhq/gitlab\"] serving gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:54.916876+01:00"}
{"@level":"debug","@message":"ProviderTransformer: \"gitlab_personal_access_token.this\" (*terraform.NodeValidatableResource) needs provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.916880+01:00"}
{"@level":"trace","@message":"ProviderTransformer: exact match for provider[\"registry.terraform.io/gitlabhq/gitlab\"] serving data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:54.916887+01:00"}
{"@level":"debug","@message":"ProviderTransformer: \"data.gitlab_current_user.this\" (*terraform.NodeValidatableResource) needs provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.916891+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.916903+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer","@timestamp":"2024-10-29T11:32:54.916907+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916915+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.graphTransformerMulti with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.916923+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RemovedModuleTransformer","@timestamp":"2024-10-29T11:32:54.916926+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RemovedModuleTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916938+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachSchemaTransformer","@timestamp":"2024-10-29T11:32:54.916941+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.916947+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching resource schema to gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:54.916950+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.916955+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching resource schema to data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:54.916959+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.916963+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching provider config schema to provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.916967+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachSchemaTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916975+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ModuleExpansionTransformer","@timestamp":"2024-10-29T11:32:54.916977+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ModuleExpansionTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916988+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ExternalReferenceTransformer","@timestamp":"2024-10-29T11:32:54.916991+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ExternalReferenceTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.916998+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ReferenceTransformer","@timestamp":"2024-10-29T11:32:54.917001+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"gitlab_personal_access_token.this\" references: [data.gitlab_current_user.this]","@timestamp":"2024-10-29T11:32:54.917033+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"data.gitlab_current_user.this\" references: []","@timestamp":"2024-10-29T11:32:54.917048+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" references: []","@timestamp":"2024-10-29T11:32:54.917058+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ReferenceTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.917068+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachDependenciesTransformer","@timestamp":"2024-10-29T11:32:54.917071+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachDependenciesTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917081+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.attachDataResourceDependsOnTransformer","@timestamp":"2024-10-29T11:32:54.917084+01:00"}
{"@level":"trace","@message":"attachDataDependenciesTransformer: data.gitlab_current_user.this depends on []","@timestamp":"2024-10-29T11:32:54.917101+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917112+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.DestroyEdgeTransformer","@timestamp":"2024-10-29T11:32:54.917116+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.DestroyEdgeTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917125+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.pruneUnusedNodesTransformer","@timestamp":"2024-10-29T11:32:54.917128+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.pruneUnusedNodesTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917135+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TargetsTransformer","@timestamp":"2024-10-29T11:32:54.917138+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TargetsTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917147+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ForcedCBDTransformer","@timestamp":"2024-10-29T11:32:54.917149+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ForcedCBDTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.917158+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.CloseProviderTransformer","@timestamp":"2024-10-29T11:32:54.917160+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.CloseProviderTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.917177+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.CloseRootModuleTransformer","@timestamp":"2024-10-29T11:32:54.917181+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.CloseRootModuleTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n root - *terraform.nodeCloseModule\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n ------","@timestamp":"2024-10-29T11:32:54.917198+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TransitiveReductionTransformer","@timestamp":"2024-10-29T11:32:54.917202+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TransitiveReductionTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n data.gitlab_current_user.this - *terraform.NodeValidatableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n gitlab_personal_access_token.this - *terraform.NodeValidatableResource\n root - *terraform.nodeCloseModule\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n ------","@timestamp":"2024-10-29T11:32:54.917227+01:00"}
{"@level":"debug","@message":"Starting graph walk: walkValidate","@timestamp":"2024-10-29T11:32:54.917235+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": starting visit (*terraform.NodeApplyableProvider)","@timestamp":"2024-10-29T11:32:54.917331+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": belongs to","@timestamp":"2024-10-29T11:32:54.917342+01:00"}
{"@level":"debug","@message":"created provider logger","@timestamp":"2024-10-29T11:32:54.917398+01:00","level":1}
{"@level":"info","@message":"configuring client automatic mTLS","@module":"provider","@timestamp":"2024-10-29T11:32:54.917413+01:00"}
{"@level":"debug","@message":"starting plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.920166+01:00","args":[".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"],"path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"debug","@message":"plugin started","@module":"provider","@timestamp":"2024-10-29T11:32:54.920516+01:00","path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0","pid":210565}
{"@level":"debug","@message":"waiting for RPC address","@module":"provider","@timestamp":"2024-10-29T11:32:54.920543+01:00","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"info","@message":"configuring server automatic mTLS","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.926515+01:00","timestamp":"2024-10-29T11:32:54.926+0100"}
{"@level":"debug","@message":"using plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.935602+01:00","version":6}
{"@level":"debug","@message":"plugin address","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.935610+01:00","address":"/tmp/plugin1347428571","network":"unix","timestamp":"2024-10-29T11:32:54.935+0100"}
{"@level":"trace","@message":"BuiltinEvalContext: Initialized \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" provider for provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.941698+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.941731+01:00"}
{"@level":"trace","@message":"NodeApplyableProvider: validating configuration for provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.941737+01:00"}
{"@level":"trace","@message":"buildProviderConfig for provider[\"registry.terraform.io/gitlabhq/gitlab\"]: using explicit config only","@timestamp":"2024-10-29T11:32:54.941742+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": visit complete","@timestamp":"2024-10-29T11:32:54.941767+01:00"}
{"@level":"trace","@message":"waiting for stdio data","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:54.941778+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": starting visit (*terraform.NodeValidatableResource)","@timestamp":"2024-10-29T11:32:54.941792+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": belongs to","@timestamp":"2024-10-29T11:32:54.941848+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.941890+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.941901+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ValidateDataResourceConfig","@timestamp":"2024-10-29T11:32:54.942029+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:54.942035+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:648","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.942661+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/internal/logging/protocol_data.go:41","@level":"trace","@message":"Skipping protocol data file writing because no data directory is set. Use the TF_LOG_SDK_PROTO_DATA_DIR environment variable to enable this functionality.","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.942692+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.942707+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"starting underlying server discovery via GetMetadata or GetProviderSchema","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.942718+01:00","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling GetMetadata for discovery","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.942725+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:83","@level":"trace","@message":"Getting provider metadata","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.942736+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling GetMetadata for discovery","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.942770+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:181","@level":"trace","@message":"Checking DataSourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.942977+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943004+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:348","@level":"trace","@message":"Calling provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943017+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:350","@level":"trace","@message":"Called provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943029+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:192","@level":"trace","@message":"Calling provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943042+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:194","@level":"trace","@message":"Called provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943058+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943069+01:00","tf_data_source_type":"gitlab_application","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943080+01:00","tf_data_source_type":"gitlab_compliance_framework","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943095+01:00","tf_data_source_type":"gitlab_group_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943108+01:00","tf_data_source_type":"gitlab_group_provisioned_users","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943117+01:00","tf_data_source_type":"gitlab_group_service_account","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943127+01:00","tf_data_source_type":"gitlab_metadata","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943136+01:00","tf_data_source_type":"gitlab_pipeline_schedule","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.942+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943146+01:00","tf_data_source_type":"gitlab_pipeline_schedules","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943155+01:00","tf_data_source_type":"gitlab_project_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943164+01:00","tf_data_source_type":"gitlab_project_merge_request","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943173+01:00","tf_data_source_type":"gitlab_project_protected_branch","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943183+01:00","tf_data_source_type":"gitlab_project_protected_branches","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943198+01:00","tf_data_source_type":"gitlab_project_protected_tag","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943207+01:00","tf_data_source_type":"gitlab_project_protected_tags","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943217+01:00","tf_data_source_type":"gitlab_release","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_functions.go:124","@level":"trace","@message":"Checking FunctionTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943226+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943235+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943244+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:521","@level":"trace","@message":"Calling provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943253+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:523","@level":"trace","@message":"Called provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943264+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943279+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_application","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943289+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_branch_protection","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943298+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943318+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943328+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943340+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943350+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_hook","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943361+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943371+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943381+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943403+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_service_account","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943417+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943429+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943441+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943454+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943467+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_member_role","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943480+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_pages_domain","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943492+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943508+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943520+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943532+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943544+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_hook","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943559+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943570+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943582+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943594+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943606+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943618+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943629+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943641+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943654+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_tag_protection","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943667+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.943679+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_resource_type":"gitlab_user_runner","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.943688+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:314","@level":"trace","@message":"Calling downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.943706+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:316","@level":"trace","@message":"Called downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.943736+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.943755+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":1,"tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:668","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.943771+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"61d84de5-890e-206d-34e0-e27cbb9ba8d7","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:54.943+0100"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": visit complete","@timestamp":"2024-10-29T11:32:54.944005+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": starting visit (*terraform.NodeValidatableResource)","@timestamp":"2024-10-29T11:32:54.944030+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": belongs to","@timestamp":"2024-10-29T11:32:54.944036+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.944057+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.944062+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.944210+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.944217+01:00"}
{"@level":"debug","@message":"skipping FixUpBlockAttrs","@timestamp":"2024-10-29T11:32:54.944232+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ValidateResourceConfig","@timestamp":"2024-10-29T11:32:54.944268+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:54.944278+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:715","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.944505+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.944532+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.944552+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944571+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944590+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:602","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944616+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:604","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944635+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:35","@level":"trace","@message":"Resource implements ResourceWithConfigure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944674+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:42","@level":"trace","@message":"Calling provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944713+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:44","@level":"trace","@message":"Called provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944731+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944757+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944779+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944800+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:799","@level":"trace","@message":"Calling provider defined validator.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944830+01:00","description":"element value must satisfy all validations: value must be one of: [\"api\" \"read_user\" \"read_api\" \"read_repository\" \"write_repository\" \"read_registry\" \"write_registry\" \"sudo\" \"admin_mode\" \"create_runner\" \"manage_runner\" \"ai_features\" \"k8s_proxy\" \"read_service_ping\"]","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:809","@level":"trace","@message":"Called provider defined validator.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944864+01:00","description":"element value must satisfy all validations: value must be one of: [\"api\" \"read_user\" \"read_api\" \"read_repository\" \"write_repository\" \"read_registry\" \"write_registry\" \"sudo\" \"admin_mode\" \"create_runner\" \"manage_runner\" \"ai_features\" \"k8s_proxy\" \"read_service_ping\"]","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944889+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944911+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944946+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:864","@level":"trace","@message":"Calling provider defined validator.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.944967+01:00","description":"Ensure that if an attribute is set, these are not set: \"[rotation_configuration]\"","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:874","@level":"trace","@message":"Called provider defined validator.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.945008+01:00","description":"Ensure that if an attribute is set, these are not set: \"[rotation_configuration]\"","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:734","@level":"trace","@message":"Calling provider defined validator.Object","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.945036+01:00","description":"Ensure that if an attribute is set, these are not set: \"[expires_at]\"","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": visit complete","@timestamp":"2024-10-29T11:32:54.945056+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"] (close)\": starting visit (*terraform.graphNodeCloseProvider)","@timestamp":"2024-10-29T11:32:54.945097+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"] (close)\": does not belong to any module instance","@timestamp":"2024-10-29T11:32:54.945105+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: Close","@timestamp":"2024-10-29T11:32:54.945109+01:00"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:744","@level":"trace","@message":"Called provider defined validator.Object","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.945062+01:00","description":"Ensure that if an attribute is set, these are not set: \"[expires_at]\"","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.945153+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":0,"tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:735","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.945188+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"b37f9e9c-8674-e296-2a5a-d6429557f399","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:54.944+0100"}
{"@level":"debug","@message":"received EOF, stopping recv loop","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:54.945440+01:00","err":"rpc error: code = Unavailable desc = error reading from server: EOF"}
{"@level":"info","@message":"plugin process exited","@module":"provider","@timestamp":"2024-10-29T11:32:54.946454+01:00","id":"210565","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"debug","@message":"plugin exited","@module":"provider","@timestamp":"2024-10-29T11:32:54.946490+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"] (close)\": visit complete","@timestamp":"2024-10-29T11:32:54.946501+01:00"}
{"@level":"trace","@message":"vertex \"root\": starting visit (*terraform.nodeCloseModule)","@timestamp":"2024-10-29T11:32:54.946521+01:00"}
{"@level":"trace","@message":"vertex \"root\": does not belong to any module instance","@timestamp":"2024-10-29T11:32:54.946527+01:00"}
{"@level":"trace","@message":"vertex \"root\": visit complete","@timestamp":"2024-10-29T11:32:54.946531+01:00"}
{"@level":"info","@message":"backend/local: plan calling Plan","@timestamp":"2024-10-29T11:32:54.946550+01:00"}
{"@level":"debug","@message":"Building and walking plan graph for NormalMode","@timestamp":"2024-10-29T11:32:54.946583+01:00"}
{"@level":"trace","@message":"building graph for walkPlan","@timestamp":"2024-10-29T11:32:54.946613+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ConfigTransformer","@timestamp":"2024-10-29T11:32:54.946619+01:00"}
{"@level":"trace","@message":"ConfigTransformer: Starting for path:","@timestamp":"2024-10-29T11:32:54.946623+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ConfigTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n ------","@timestamp":"2024-10-29T11:32:54.946642+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RootVariableTransformer","@timestamp":"2024-10-29T11:32:54.946645+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RootVariableTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946650+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ModuleVariableTransformer","@timestamp":"2024-10-29T11:32:54.946653+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ModuleVariableTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946657+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.variableValidationTransformer","@timestamp":"2024-10-29T11:32:54.946661+01:00"}
{"@level":"trace","@message":"variableValidationTransformer: adding validation nodes for any existing variable evaluation nodes","@timestamp":"2024-10-29T11:32:54.946663+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.variableValidationTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946668+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.LocalTransformer","@timestamp":"2024-10-29T11:32:54.946671+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.LocalTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946675+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OutputTransformer","@timestamp":"2024-10-29T11:32:54.946677+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OutputTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946681+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.checkTransformer","@timestamp":"2024-10-29T11:32:54.946683+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.checkTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946688+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanResourceInstanceTransformer","@timestamp":"2024-10-29T11:32:54.946690+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanResourceInstanceTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946699+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.StateTransformer","@timestamp":"2024-10-29T11:32:54.946702+01:00"}
{"@level":"trace","@message":"StateTransformer: creating nodes for deposed instance objects only","@timestamp":"2024-10-29T11:32:54.946705+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.StateTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946709+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachStateTransformer","@timestamp":"2024-10-29T11:32:54.946711+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachStateTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946716+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanOutputTransformer","@timestamp":"2024-10-29T11:32:54.946718+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanOutputTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946723+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachResourceConfigTransformer","@timestamp":"2024-10-29T11:32:54.946725+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching to \"gitlab_personal_access_token.this (expand)\" (*terraform.nodeExpandPlannableResource) config from hcl.Range{Filename:\"main.tf\", Start:hcl.Pos{Line:15, Column:1, Byte:158}, End:hcl.Pos{Line:15, Column:47, Byte:204}}","@timestamp":"2024-10-29T11:32:54.946735+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching provider meta configs to gitlab_personal_access_token.this (expand)","@timestamp":"2024-10-29T11:32:54.946739+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching to \"data.gitlab_current_user.this (expand)\" (*terraform.nodeExpandPlannableResource) config from hcl.Range{Filename:\"main.tf\", Start:hcl.Pos{Line:11, Column:1, Byte:118}, End:hcl.Pos{Line:11, Column:34, Byte:151}}","@timestamp":"2024-10-29T11:32:54.946744+01:00"}
{"@level":"trace","@message":"AttachResourceConfigTransformer: attaching provider meta configs to data.gitlab_current_user.this (expand)","@timestamp":"2024-10-29T11:32:54.946747+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachResourceConfigTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946751+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.graphTransformerMulti","@timestamp":"2024-10-29T11:32:54.946754+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.externalProviderTransformer","@timestamp":"2024-10-29T11:32:54.946756+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.externalProviderTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n ------","@timestamp":"2024-10-29T11:32:54.946762+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.ProviderConfigTransformer","@timestamp":"2024-10-29T11:32:54.946765+01:00"}
{"@level":"trace","@message":"ProviderConfigTransformer: attaching to \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" provider configuration from main.tf:9,1-18","@timestamp":"2024-10-29T11:32:54.946777+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.ProviderConfigTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.946784+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.MissingProviderTransformer","@timestamp":"2024-10-29T11:32:54.946789+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.MissingProviderTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946808+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.ProviderTransformer","@timestamp":"2024-10-29T11:32:54.946811+01:00"}
{"@level":"trace","@message":"ProviderTransformer: exact match for provider[\"registry.terraform.io/gitlabhq/gitlab\"] serving gitlab_personal_access_token.this (expand)","@timestamp":"2024-10-29T11:32:54.946825+01:00"}
{"@level":"debug","@message":"ProviderTransformer: \"gitlab_personal_access_token.this (expand)\" (*terraform.nodeExpandPlannableResource) needs provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.946830+01:00"}
{"@level":"trace","@message":"ProviderTransformer: exact match for provider[\"registry.terraform.io/gitlabhq/gitlab\"] serving data.gitlab_current_user.this (expand)","@timestamp":"2024-10-29T11:32:54.946836+01:00"}
{"@level":"debug","@message":"ProviderTransformer: \"data.gitlab_current_user.this (expand)\" (*terraform.nodeExpandPlannableResource) needs provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.946840+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.ProviderTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.946851+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Executing graph transform *terraform.PruneProviderTransformer","@timestamp":"2024-10-29T11:32:54.946855+01:00"}
{"@level":"trace","@message":"(graphTransformerMulti) Completed graph transform *terraform.PruneProviderTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946863+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.graphTransformerMulti with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.946871+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RemovedModuleTransformer","@timestamp":"2024-10-29T11:32:54.946874+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RemovedModuleTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946881+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachSchemaTransformer","@timestamp":"2024-10-29T11:32:54.946884+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.946889+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching resource schema to gitlab_personal_access_token.this (expand)","@timestamp":"2024-10-29T11:32:54.946893+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.946897+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching resource schema to data.gitlab_current_user.this (expand)","@timestamp":"2024-10-29T11:32:54.946900+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.946905+01:00"}
{"@level":"trace","@message":"AttachSchemaTransformer: attaching provider config schema to provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.946910+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachSchemaTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946920+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ModuleExpansionTransformer","@timestamp":"2024-10-29T11:32:54.946923+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ModuleExpansionTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946936+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ExternalReferenceTransformer","@timestamp":"2024-10-29T11:32:54.946939+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ExternalReferenceTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.946947+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ReferenceTransformer","@timestamp":"2024-10-29T11:32:54.946949+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"gitlab_personal_access_token.this (expand)\" references: [data.gitlab_current_user.this (expand)]","@timestamp":"2024-10-29T11:32:54.946972+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"data.gitlab_current_user.this (expand)\" references: []","@timestamp":"2024-10-29T11:32:54.946982+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" references: []","@timestamp":"2024-10-29T11:32:54.946990+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ReferenceTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.946999+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachDependenciesTransformer","@timestamp":"2024-10-29T11:32:54.947002+01:00"}
{"@level":"trace","@message":"AttachDependenciesTransformer: gitlab_personal_access_token.this depends on [data.gitlab_current_user.this]","@timestamp":"2024-10-29T11:32:54.947011+01:00"}
{"@level":"trace","@message":"AttachDependenciesTransformer: data.gitlab_current_user.this depends on []","@timestamp":"2024-10-29T11:32:54.947015+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachDependenciesTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947023+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.attachDataResourceDependsOnTransformer","@timestamp":"2024-10-29T11:32:54.947026+01:00"}
{"@level":"trace","@message":"attachDataDependenciesTransformer: data.gitlab_current_user.this depends on []","@timestamp":"2024-10-29T11:32:54.947036+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.attachDataResourceDependsOnTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947043+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.DestroyEdgeTransformer","@timestamp":"2024-10-29T11:32:54.947046+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.DestroyEdgeTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947055+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.pruneUnusedNodesTransformer","@timestamp":"2024-10-29T11:32:54.947057+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.pruneUnusedNodesTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947067+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TargetsTransformer","@timestamp":"2024-10-29T11:32:54.947069+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TargetsTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947078+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ForcedCBDTransformer","@timestamp":"2024-10-29T11:32:54.947080+01:00"}
{"@level":"trace","@message":"ForcedCBDTransformer: \"data.gitlab_current_user.this (expand)\" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping","@timestamp":"2024-10-29T11:32:54.947085+01:00"}
{"@level":"trace","@message":"ForcedCBDTransformer: \"gitlab_personal_access_token.this (expand)\" (*terraform.nodeExpandPlannableResource) has no CBD descendent, so skipping","@timestamp":"2024-10-29T11:32:54.947090+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ForcedCBDTransformer (no changes)","@timestamp":"2024-10-29T11:32:54.947097+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.CloseProviderTransformer","@timestamp":"2024-10-29T11:32:54.947100+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.CloseProviderTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n ------","@timestamp":"2024-10-29T11:32:54.947120+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.CloseRootModuleTransformer","@timestamp":"2024-10-29T11:32:54.947123+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.CloseRootModuleTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n root - *terraform.nodeCloseModule\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n ------","@timestamp":"2024-10-29T11:32:54.947142+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TransitiveReductionTransformer","@timestamp":"2024-10-29T11:32:54.947146+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TransitiveReductionTransformer with new graph:\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n data.gitlab_current_user.this (expand) - *terraform.nodeExpandPlannableResource\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] - *terraform.NodeApplyableProvider\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n gitlab_personal_access_token.this (expand) - *terraform.nodeExpandPlannableResource\n root - *terraform.nodeCloseModule\n provider[\"registry.terraform.io/gitlabhq/gitlab\"] (close) - *terraform.graphNodeCloseProvider\n ------","@timestamp":"2024-10-29T11:32:54.947172+01:00"}
{"@level":"debug","@message":"Starting graph walk: walkPlan","@timestamp":"2024-10-29T11:32:54.947181+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": starting visit (*terraform.NodeApplyableProvider)","@timestamp":"2024-10-29T11:32:54.947264+01:00"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": belongs to","@timestamp":"2024-10-29T11:32:54.947276+01:00"}
{"@level":"debug","@message":"created provider logger","@timestamp":"2024-10-29T11:32:54.947327+01:00","level":1}
{"@level":"info","@message":"configuring client automatic mTLS","@module":"provider","@timestamp":"2024-10-29T11:32:54.947342+01:00"}
{"@level":"debug","@message":"starting plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.950706+01:00","args":[".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"],"path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"debug","@message":"plugin started","@module":"provider","@timestamp":"2024-10-29T11:32:54.951135+01:00","path":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0","pid":210575}
{"@level":"debug","@message":"waiting for RPC address","@module":"provider","@timestamp":"2024-10-29T11:32:54.951148+01:00","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"info","@message":"configuring server automatic mTLS","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.960016+01:00","timestamp":"2024-10-29T11:32:54.959+0100"}
{"@level":"debug","@message":"using plugin","@module":"provider","@timestamp":"2024-10-29T11:32:54.969138+01:00","version":6}
{"@level":"debug","@message":"plugin address","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:54.969240+01:00","address":"/tmp/plugin1229224586","network":"unix","timestamp":"2024-10-29T11:32:54.969+0100"}
{"@level":"trace","@message":"BuiltinEvalContext: Initialized \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\" provider for provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.977211+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.977242+01:00"}
{"@level":"trace","@message":"NodeApplyableProvider: configuring provider[\"registry.terraform.io/gitlabhq/gitlab\"]","@timestamp":"2024-10-29T11:32:54.977250+01:00"}
{"@level":"trace","@message":"buildProviderConfig for provider[\"registry.terraform.io/gitlabhq/gitlab\"]: using explicit config only","@timestamp":"2024-10-29T11:32:54.977259+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:54.977264+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:54.977275+01:00"}
{"@level":"trace","@message":"waiting for stdio data","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:54.977372+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ValidateProviderConfig","@timestamp":"2024-10-29T11:32:54.977483+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:54.977490+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:577","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.978237+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/internal/logging/protocol_data.go:41","@level":"trace","@message":"Skipping protocol data file writing because no data directory is set. Use the TF_LOG_SDK_PROTO_DATA_DIR environment variable to enable this functionality.","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.978296+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.978351+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.978382+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:170","@level":"trace","@message":"Preparing provider configuration","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.978414+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:258","@level":"trace","@message":"Calling downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.978445+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.978+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:260","@level":"trace","@message":"Called downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.980397+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.980453+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:360","@level":"trace","@message":"Checking ProviderSchema lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980484+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:371","@level":"trace","@message":"Calling provider defined Provider Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980542+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:373","@level":"trace","@message":"Called provider defined Provider Schema","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980575+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980745+01:00","tf_attribute_path":"headers","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980793+01:00","tf_attribute_path":"headers","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980838+01:00","tf_attribute_path":"headers","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980873+01:00","tf_attribute_path":"retries","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980905+01:00","tf_attribute_path":"retries","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:54.980942+01:00","tf_attribute_path":"retries","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.980991+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":2,"tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:597","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.981033+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"13599e2a-156c-5210-0b65-b91cde2a1cdd","tf_rpc":"ValidateProviderConfig","timestamp":"2024-10-29T11:32:54.980+0100"}
{"@level":"trace","@message":"GRPCProvider.v6: ConfigureProvider","@timestamp":"2024-10-29T11:32:54.981318+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:54.981348+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:549","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.981787+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:54.981+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/client_capabilities.go:24","@level":"trace","@message":"Announced client capabilities","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.981835+01:00","tf_client_capability_deferral_allowed":false,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:54.981+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:54.981859+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:54.981+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:54.981881+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:54.981+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:615","@level":"trace","@message":"Calling downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:54.982051+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:54.981+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Sending HTTP Request","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:54.982847+01:00","Accept":"application/json","Accept-Encoding":"gzip","Authorization":"Bearer ***","Host":"127.0.0.1:8085","User-Agent":"go-gitlab","tf_http_op_type":"request","tf_http_req_body":"","tf_http_req_method":"GET","tf_http_req_uri":"/api/v4/user","tf_http_req_version":"HTTP/1.1","tf_http_trans_id":"9ec15448-2563-e009-de0c-2f91159d8ea5","timestamp":"2024-10-29T11:32:54.982+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Received HTTP Response","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:55.038233+01:00","Cache-Control":"max-age=0, private, must-revalidate","Connection":"keep-alive","Content-Type":"application/json","Date":"Tue, 29 Oct 2024 10:32:55 GMT","Etag":"W/\"f9581ed368fe1a3a490cb658fbb40779\"","Referrer-Policy":"strict-origin-when-cross-origin","Server":"nginx","Strict-Transport-Security":"max-age=63072000","Vary":["Accept-Encoding","Origin"],"X-Content-Type-Options":"nosniff","X-Frame-Options":"SAMEORIGIN","X-Gitlab-Meta":"{\"correlation_id\":\"01JBBXBVY768R1XBYYMWRAKT1Z\",\"version\":\"1\"}","X-Request-Id":"01JBBXBVY768R1XBYYMWRAKT1Z","X-Runtime":"0.051849","tf_http_op_type":"response","tf_http_res_body":"{\"id\":1,\"username\":\"root\",\"name\":\"Administrator\",\"state\":\"active\",\"locked\":false,\"avatar_url\":\"https://www.gravatar.com/avatar/ab3abcb9346081f6bdaf07e0898be25b545700b245b575f53db76549b8269cdc?s=80\\u0026d=identicon\",\"web_url\":\"http://a785837c43e8/root\",\"created_at\":\"2024-10-29T08:22:27.724Z\",\"bio\":\"\",\"location\":\"\",\"public_email\":null,\"skype\":\"\",\"linkedin\":\"\",\"twitter\":\"\",\"discord\":\"\",\"website_url\":\"\",\"organization\":\"\",\"job_title\":\"\",\"pronouns\":null,\"bot\":false,\"work_information\":null,\"local_time\":null,\"last_sign_in_at\":\"2024-10-29T10:26:54.293Z\",\"confirmed_at\":\"2024-10-29T08:22:25.563Z\",\"last_activity_on\":\"2024-10-29\",\"email\":\"gitlab_admin_b94097@example.com\",\"theme_id\":3,\"color_scheme_id\":1,\"projects_limit\":100000,\"current_sign_in_at\":\"2024-10-29T10:26:54.293Z\",\"identities\":[],\"can_create_group\":true,\"can_create_project\":true,\"two_factor_enabled\":false,\"external\":false,\"private_profile\":false,\"commit_email\":\"gitlab_admin_b94097@example.com\",\"is_admin\":true,\"note\":null,\"namespace_id\":1,\"created_by\":null,\"email_reset_offered_at\":null}","tf_http_res_status_code":200,"tf_http_res_status_reason":"200 OK","tf_http_res_version":"HTTP/1.1","tf_http_trans_id":"9ec15448-2563-e009-de0c-2f91159d8ea5","timestamp":"2024-10-29T11:32:55.038+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:617","@level":"trace","@message":"Called downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.038289+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.038+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.038307+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.038+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:360","@level":"trace","@message":"Checking ProviderSchema lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.038343+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.038+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_configureprovider.go:15","@level":"trace","@message":"Calling provider defined Provider Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.038560+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.038+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Sending HTTP Request","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:55.039375+01:00","Accept":"application/json","Accept-Encoding":"gzip","Authorization":"Bearer ***","Host":"127.0.0.1:8085","User-Agent":"go-gitlab","tf_http_op_type":"request","tf_http_req_body":"","tf_http_req_method":"GET","tf_http_req_uri":"/api/v4/user","tf_http_req_version":"HTTP/1.1","tf_http_trans_id":"1e57fb21-0914-ad7f-5343-8f718ce184f3","timestamp":"2024-10-29T11:32:55.039+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Received HTTP Response","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:55.081582+01:00","Cache-Control":"max-age=0, private, must-revalidate","Connection":"keep-alive","Content-Type":"application/json","Date":"Tue, 29 Oct 2024 10:32:55 GMT","Etag":"W/\"f9581ed368fe1a3a490cb658fbb40779\"","Referrer-Policy":"strict-origin-when-cross-origin","Server":"nginx","Strict-Transport-Security":"max-age=63072000","Vary":["Accept-Encoding","Origin"],"X-Content-Type-Options":"nosniff","X-Frame-Options":"SAMEORIGIN","X-Gitlab-Meta":"{\"correlation_id\":\"01JBBXBW00A7WAE42ZXZ8H98YX\",\"version\":\"1\"}","X-Request-Id":"01JBBXBW00A7WAE42ZXZ8H98YX","X-Runtime":"0.038814","tf_http_op_type":"response","tf_http_res_body":"{\"id\":1,\"username\":\"root\",\"name\":\"Administrator\",\"state\":\"active\",\"locked\":false,\"avatar_url\":\"https://www.gravatar.com/avatar/ab3abcb9346081f6bdaf07e0898be25b545700b245b575f53db76549b8269cdc?s=80\\u0026d=identicon\",\"web_url\":\"http://a785837c43e8/root\",\"created_at\":\"2024-10-29T08:22:27.724Z\",\"bio\":\"\",\"location\":\"\",\"public_email\":null,\"skype\":\"\",\"linkedin\":\"\",\"twitter\":\"\",\"discord\":\"\",\"website_url\":\"\",\"organization\":\"\",\"job_title\":\"\",\"pronouns\":null,\"bot\":false,\"work_information\":null,\"local_time\":null,\"last_sign_in_at\":\"2024-10-29T10:26:54.293Z\",\"confirmed_at\":\"2024-10-29T08:22:25.563Z\",\"last_activity_on\":\"2024-10-29\",\"email\":\"gitlab_admin_b94097@example.com\",\"theme_id\":3,\"color_scheme_id\":1,\"projects_limit\":100000,\"current_sign_in_at\":\"2024-10-29T10:26:54.293Z\",\"identities\":[],\"can_create_group\":true,\"can_create_project\":true,\"two_factor_enabled\":false,\"external\":false,\"private_profile\":false,\"commit_email\":\"gitlab_admin_b94097@example.com\",\"is_admin\":true,\"note\":null,\"namespace_id\":1,\"created_by\":null,\"email_reset_offered_at\":null}","tf_http_res_status_code":200,"tf_http_res_status_reason":"200 OK","tf_http_res_version":"HTTP/1.1","tf_http_trans_id":"1e57fb21-0914-ad7f-5343-8f718ce184f3","timestamp":"2024-10-29T11:32:55.081+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_configureprovider.go:23","@level":"trace","@message":"Called provider defined Provider Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.081634+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.081+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.081664+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":99,"tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.081+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:570","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.081675+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"c8ca12cd-d69d-1d5a-c2d1-833be0f07550","tf_rpc":"ConfigureProvider","timestamp":"2024-10-29T11:32:55.081+0100"}
{"@level":"trace","@message":"vertex \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"]\": visit complete","@timestamp":"2024-10-29T11:32:55.081776+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": starting visit (*terraform.nodeExpandPlannableResource)","@timestamp":"2024-10-29T11:32:55.081802+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": does not belong to any module instance","@timestamp":"2024-10-29T11:32:55.081808+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": expanding dynamic subgraph","@timestamp":"2024-10-29T11:32:55.081813+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ResourceCountTransformer","@timestamp":"2024-10-29T11:32:55.081835+01:00"}
{"@level":"trace","@message":"ResourceCountTransformer: adding data.gitlab_current_user.this as *terraform.NodePlannableResourceInstance","@timestamp":"2024-10-29T11:32:55.081858+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ResourceCountTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodePlannableResourceInstance\n ------","@timestamp":"2024-10-29T11:32:55.081865+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanResourceInstanceCountTransformer","@timestamp":"2024-10-29T11:32:55.081868+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.081872+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachStateTransformer","@timestamp":"2024-10-29T11:32:55.081874+01:00"}
{"@level":"trace","@message":"NodeAbstractResourceInstance.AttachResourceState for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.081881+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachStateTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.081885+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TargetsTransformer","@timestamp":"2024-10-29T11:32:55.081887+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TargetsTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.081890+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ReferenceTransformer","@timestamp":"2024-10-29T11:32:55.081892+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"data.gitlab_current_user.this\" references: []","@timestamp":"2024-10-29T11:32:55.081916+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ReferenceTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.081919+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RootTransformer","@timestamp":"2024-10-29T11:32:55.081941+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RootTransformer with new graph:\n data.gitlab_current_user.this - *terraform.NodePlannableResourceInstance\n root - terraform.graphNodeRoot\n data.gitlab_current_user.this - *terraform.NodePlannableResourceInstance\n ------","@timestamp":"2024-10-29T11:32:55.081951+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": entering dynamic subgraph","@timestamp":"2024-10-29T11:32:55.081960+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": starting visit (*terraform.NodePlannableResourceInstance)","@timestamp":"2024-10-29T11:32:55.081979+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": belongs to","@timestamp":"2024-10-29T11:32:55.081995+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.082019+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.082043+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.082054+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.082181+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.082188+01:00"}
{"@level":"trace","@message":"readDataSource: Re-validating config for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.082197+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ValidateDataResourceConfig","@timestamp":"2024-10-29T11:32:55.082199+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.082202+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:648","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.082501+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.082527+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"starting underlying server discovery via GetMetadata or GetProviderSchema","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.082546+01:00","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling GetMetadata for discovery","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.082554+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:83","@level":"trace","@message":"Getting provider metadata","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.082565+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling GetMetadata for discovery","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.082625+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:181","@level":"trace","@message":"Checking DataSourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082680+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082696+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:348","@level":"trace","@message":"Calling provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082716+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:350","@level":"trace","@message":"Called provider defined Provider Metadata","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082726+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:192","@level":"trace","@message":"Calling provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082737+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:194","@level":"trace","@message":"Called provider defined Provider DataSources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082749+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082765+01:00","tf_data_source_type":"gitlab_application","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082775+01:00","tf_data_source_type":"gitlab_compliance_framework","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082784+01:00","tf_data_source_type":"gitlab_group_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082795+01:00","tf_data_source_type":"gitlab_group_provisioned_users","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082807+01:00","tf_data_source_type":"gitlab_group_service_account","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082819+01:00","tf_data_source_type":"gitlab_metadata","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082848+01:00","tf_data_source_type":"gitlab_pipeline_schedule","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082860+01:00","tf_data_source_type":"gitlab_pipeline_schedules","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082872+01:00","tf_data_source_type":"gitlab_project_ids","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082884+01:00","tf_data_source_type":"gitlab_project_merge_request","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082896+01:00","tf_data_source_type":"gitlab_project_protected_branch","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082909+01:00","tf_data_source_type":"gitlab_project_protected_branches","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082921+01:00","tf_data_source_type":"gitlab_project_protected_tag","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082937+01:00","tf_data_source_type":"gitlab_project_protected_tags","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:215","@level":"trace","@message":"Found data source type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082948+01:00","tf_data_source_type":"gitlab_release","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_functions.go:124","@level":"trace","@message":"Checking FunctionTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082957+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082967+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082978+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:521","@level":"trace","@message":"Calling provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082987+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:523","@level":"trace","@message":"Called provider defined Provider Resources","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.082997+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083009+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_application","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.082+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083021+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_branch_protection","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083032+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083043+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083054+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083066+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083078+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_hook","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083089+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083100+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083111+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083122+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_service_account","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083132+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083145+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083157+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083172+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083189+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_member_role","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083200+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_pages_domain","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083224+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083236+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083248+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_access_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083261+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083270+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_hook","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083284+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083303+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083315+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083327+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083340+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083352+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083365+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083377+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083393+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_tag_protection","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083404+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:544","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.083419+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_resource_type":"gitlab_user_runner","tf_rpc":"GetMetadata","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.083433+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:314","@level":"trace","@message":"Calling downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.083506+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/grpc_provider.go:316","@level":"trace","@message":"Called downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.083545+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.083562+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":1,"tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:668","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.083590+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"fed6e7e0-4ceb-aaba-2baa-e6522dadcdb2","tf_rpc":"ValidateDataResourceConfig","timestamp":"2024-10-29T11:32:55.083+0100"}
{"@level":"trace","@message":"readDataSource: data.gitlab_current_user.this configuration is complete, so reading from provider","@timestamp":"2024-10-29T11:32:55.083637+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ReadDataSource","@timestamp":"2024-10-29T11:32:55.083698+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.083703+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:677","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.084167+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/client_capabilities.go:38","@level":"trace","@message":"Announced client capabilities","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.084195+01:00","tf_client_capability_deferral_allowed":false,"tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.084232+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.084249+01:00","tf_mux_provider":"tf5to6server.v5tov6Server","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/resource.go:1042","@level":"trace","@message":"Calling downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.084260+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"gitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider/sdk/data_source_gitlab_current_user.go:77","@level":"debug","@message":"[DEBUG] executing GraphQL Query query {currentUser {name, bot, groupCount, id, namespace{id}, publicEmail, username}} to retrieve current user","@module":"gitlab","@timestamp":"2024-10-29T11:32:55.084287+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.084+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/schema/resource.go:1044","@level":"trace","@message":"Called downstream","@module":"sdk.helper_schema","@timestamp":"2024-10-29T11:32:55.192523+01:00","tf_data_source_type":"gitlab_current_user","tf_mux_provider":"tf5to6server.v5tov6Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.192+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.192555+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":108,"tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.192+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:706","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.192574+01:00","tf_data_source_type":"gitlab_current_user","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"d318b46d-7e17-7a9f-966e-eafb3185c1b5","tf_rpc":"ReadDataSource","timestamp":"2024-10-29T11:32:55.192+0100"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.192911+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.192926+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.192930+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.192986+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState to workingState for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.192990+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for data.gitlab_current_user.this","@timestamp":"2024-10-29T11:32:55.192993+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this\": visit complete","@timestamp":"2024-10-29T11:32:55.193036+01:00"}
{"@level":"trace","@message":"vertex \"root\": starting visit (terraform.graphNodeRoot)","@timestamp":"2024-10-29T11:32:55.193062+01:00"}
{"@level":"trace","@message":"vertex \"root\": does not belong to any module instance","@timestamp":"2024-10-29T11:32:55.193068+01:00"}
{"@level":"trace","@message":"vertex \"root\": visit complete","@timestamp":"2024-10-29T11:32:55.193071+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": dynamic subgraph completed successfully","@timestamp":"2024-10-29T11:32:55.193078+01:00"}
{"@level":"trace","@message":"vertex \"data.gitlab_current_user.this (expand)\": visit complete","@timestamp":"2024-10-29T11:32:55.193081+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": starting visit (*terraform.nodeExpandPlannableResource)","@timestamp":"2024-10-29T11:32:55.193105+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": does not belong to any module instance","@timestamp":"2024-10-29T11:32:55.193109+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": expanding dynamic subgraph","@timestamp":"2024-10-29T11:32:55.193118+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ResourceCountTransformer","@timestamp":"2024-10-29T11:32:55.193128+01:00"}
{"@level":"trace","@message":"ResourceCountTransformer: adding gitlab_personal_access_token.this as *terraform.NodePlannableResourceInstance","@timestamp":"2024-10-29T11:32:55.193147+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ResourceCountTransformer with new graph:\n gitlab_personal_access_token.this - *terraform.NodePlannableResourceInstance\n ------","@timestamp":"2024-10-29T11:32:55.193153+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.OrphanResourceInstanceCountTransformer","@timestamp":"2024-10-29T11:32:55.193156+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.OrphanResourceInstanceCountTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.193164+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.AttachStateTransformer","@timestamp":"2024-10-29T11:32:55.193167+01:00"}
{"@level":"trace","@message":"NodeAbstractResourceInstance.AttachResourceState for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.193172+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.AttachStateTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.193188+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.TargetsTransformer","@timestamp":"2024-10-29T11:32:55.193191+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.TargetsTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.193194+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.ReferenceTransformer","@timestamp":"2024-10-29T11:32:55.193197+01:00"}
{"@level":"debug","@message":"ReferenceTransformer: \"gitlab_personal_access_token.this\" references: []","@timestamp":"2024-10-29T11:32:55.193231+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.ReferenceTransformer (no changes)","@timestamp":"2024-10-29T11:32:55.193235+01:00"}
{"@level":"trace","@message":"Executing graph transform *terraform.RootTransformer","@timestamp":"2024-10-29T11:32:55.193238+01:00"}
{"@level":"trace","@message":"Completed graph transform *terraform.RootTransformer with new graph:\n gitlab_personal_access_token.this - *terraform.NodePlannableResourceInstance\n root - terraform.graphNodeRoot\n gitlab_personal_access_token.this - *terraform.NodePlannableResourceInstance\n ------","@timestamp":"2024-10-29T11:32:55.193255+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": entering dynamic subgraph","@timestamp":"2024-10-29T11:32:55.193272+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": starting visit (*terraform.NodePlannableResourceInstance)","@timestamp":"2024-10-29T11:32:55.193296+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": belongs to","@timestamp":"2024-10-29T11:32:55.193316+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.193345+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.193364+01:00"}
{"@level":"trace","@message":"readResourceInstanceState: reading state for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.193370+01:00"}
{"@level":"trace","@message":"upgradeResourceState: schema version of gitlab_personal_access_token.this is still 0; calling provider \"gitlab\" for any other minor fixups","@timestamp":"2024-10-29T11:32:55.193406+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: UpgradeResourceState","@timestamp":"2024-10-29T11:32:55.193409+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.193412+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:744","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.193849+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.193869+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.193884+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.193905+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.193915+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:602","@level":"trace","@message":"Calling provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.193941+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:604","@level":"trace","@message":"Called provider defined Resource Schema method","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.193954+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_upgraderesourcestate.go:87","@level":"trace","@message":"UpgradeResourceState request version matches current Schema version, using framework defined passthrough implementation","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.193966+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.193+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.194212+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":0,"tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:763","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.194246+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"62c32f64-beda-4c89-170d-890a8fbfe2e4","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"UpgradeResourceState","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.194494+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState to prevRunState for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.194508+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.194512+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.194589+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.194592+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.194598+01:00"}
{"@level":"trace","@message":"NodeAbstractResourceInstance.refresh for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.194672+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.194676+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.194680+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ReadResource","@timestamp":"2024-10-29T11:32:55.194697+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.194701+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:772","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.194982+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/client_capabilities.go:52","@level":"trace","@message":"Announced client capabilities","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.195014+01:00","tf_client_capability_deferral_allowed":false,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.195029+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.195041+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.195068+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.194+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_readresource.go:66","@level":"trace","@message":"Resource implements ResourceWithConfigure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.195150+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_readresource.go:73","@level":"trace","@message":"Calling provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.195182+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_readresource.go:75","@level":"trace","@message":"Called provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.195199+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_readresource.go:116","@level":"trace","@message":"Calling provider defined Resource Read","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.195212+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"gitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider/resource_gitlab_personal_access_token.go:352","@level":"debug","@message":"Read gitlab PersonalAccessToken 14, user ID 1","@module":"gitlab","@timestamp":"2024-10-29T11:32:55.195283+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Sending HTTP Request","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:55.195440+01:00","Accept":"application/json","Accept-Encoding":"gzip","Authorization":"Bearer glpat-ACCTEST1234567890123","Host":"127.0.0.1:8085","User-Agent":"Terraform/1.9.8 (+https://www.terraform.io) Terraform-Plugin-Framework terraform-provider-gitlab/17.5.0","new_logger_warning":"This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used.","tf_http_op_type":"request","tf_http_req_body":"","tf_http_req_method":"GET","tf_http_req_uri":"/api/v4/personal_access_tokens/14","tf_http_req_version":"HTTP/1.1","tf_http_trans_id":"2ec54b79-ecba-6c5b-41a5-ee898f1a8a39","timestamp":"2024-10-29T11:32:55.195+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-sdk/v2@v2.34.0/helper/logging/logging_http_transport.go:160","@level":"debug","@message":"Received HTTP Response","@module":"gitlab.GitLab","@timestamp":"2024-10-29T11:32:55.229948+01:00","Cache-Control":"max-age=0, private, must-revalidate","Connection":"keep-alive","Content-Length":"193","Content-Type":"application/json","Date":"Tue, 29 Oct 2024 10:32:55 GMT","Etag":"W/\"147ba52f74beedc5cadb668a50a2e353\"","Referrer-Policy":"strict-origin-when-cross-origin","Server":"nginx","Strict-Transport-Security":"max-age=63072000","Vary":"Origin","X-Content-Type-Options":"nosniff","X-Frame-Options":"SAMEORIGIN","X-Gitlab-Meta":"{\"correlation_id\":\"01JBBXBW4VGTT14RCNA9AVQ2PZ\",\"version\":\"1\"}","X-Request-Id":"01JBBXBW4VGTT14RCNA9AVQ2PZ","X-Runtime":"0.031890","new_logger_warning":"This log was generated by a subsystem logger that wasn't created before being used. Use tflog.NewSubsystem to create this logger before it is used.","tf_http_op_type":"response","tf_http_res_body":"{\"id\":14,\"name\":\"Example personal access token\",\"revoked\":false,\"created_at\":\"2024-10-29T10:26:59.688Z\",\"scopes\":[\"api\"],\"user_id\":1,\"last_used_at\":null,\"active\":true,\"expires_at\":\"2025-10-28\"}","tf_http_res_status_code":200,"tf_http_res_status_reason":"200 OK","tf_http_res_version":"HTTP/1.1","tf_http_trans_id":"2ec54b79-ecba-6c5b-41a5-ee898f1a8a39","timestamp":"2024-10-29T11:32:55.229+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_readresource.go:118","@level":"trace","@message":"Called provider defined Resource Read","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230206+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230231+01:00","tf_attribute_path":"rotation_configuration.expiration_days","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230255+01:00","tf_attribute_path":"rotation_configuration.rotate_before_days","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230270+01:00","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230284+01:00","tf_attribute_path":"name","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230310+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230323+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230335+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230348+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230362+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230372+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230388+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230402+01:00","tf_attribute_path":"revoked","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230416+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230426+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230437+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230451+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230464+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230484+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230498+01:00","tf_attribute_path":"scopes[Value(\"api\")]","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230512+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230527+01:00","tf_attribute_path":"created_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230540+01:00","tf_attribute_path":"token","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230552+01:00","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230564+01:00","tf_attribute_path":"active","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/value_semantic_equality.go:91","@level":"debug","@message":"Value switched to prior value due to semantic equality logic","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.230578+01:00","tf_attribute_path":"id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.230725+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":35,"tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:802","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.230757+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"ef0eeff0-875f-bcfc-5a1c-df321d763d7b","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ReadResource","timestamp":"2024-10-29T11:32:55.230+0100"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.230998+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState to refreshState for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.231007+01:00"}
{"@level":"trace","@message":"NodeAbstractResouceInstance.writeResourceInstanceState: writing state object for gitlab_personal_access_token.this","@timestamp":"2024-10-29T11:32:55.231011+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.231080+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.231122+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.231228+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.231236+01:00"}
{"@level":"debug","@message":"skipping FixUpBlockAttrs","@timestamp":"2024-10-29T11:32:55.231291+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.231322+01:00"}
{"@level":"trace","@message":"Re-validating config for \"gitlab_personal_access_token.this\"","@timestamp":"2024-10-29T11:32:55.231328+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: ValidateResourceConfig","@timestamp":"2024-10-29T11:32:55.231336+01:00"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.231339+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:715","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.231643+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.231669+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.231679+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.231800+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:35","@level":"trace","@message":"Resource implements ResourceWithConfigure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.231826+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:42","@level":"trace","@message":"Calling provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.231848+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_validateresourceconfig.go:44","@level":"trace","@message":"Called provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232223+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:864","@level":"trace","@message":"Calling provider defined validator.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232359+01:00","description":"Ensure that if an attribute is set, these are not set: \"[rotation_configuration]\"","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:874","@level":"trace","@message":"Called provider defined validator.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232424+01:00","description":"Ensure that if an attribute is set, these are not set: \"[rotation_configuration]\"","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232475+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232528+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232577+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:734","@level":"trace","@message":"Calling provider defined validator.Object","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232629+01:00","description":"Ensure that if an attribute is set, these are not set: \"[expires_at]\"","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:744","@level":"trace","@message":"Called provider defined validator.Object","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232676+01:00","description":"Ensure that if an attribute is set, these are not set: \"[expires_at]\"","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232725+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@level":"trace","@message":"GRPCProvider.v6: PlanResourceChange","@timestamp":"2024-10-29T11:32:55.232383+01:00"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.232773+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@level":"trace","@message":"GRPCProvider.v6: returning cached schema","@timestamp":"2024-10-29T11:32:55.232929+01:00","EXTRA_VALUE_AT_END":"registry.terraform.io/gitlabhq/gitlab"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233195+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:799","@level":"trace","@message":"Calling provider defined validator.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233365+01:00","description":"element value must satisfy all validations: value must be one of: [\"api\" \"read_user\" \"read_api\" \"read_repository\" \"write_repository\" \"read_registry\" \"write_registry\" \"sudo\" \"admin_mode\" \"create_runner\" \"manage_runner\" \"ai_features\" \"k8s_proxy\" \"read_service_ping\"]","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_validation.go:809","@level":"trace","@message":"Called provider defined validator.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233394+01:00","description":"element value must satisfy all validations: value must be one of: [\"api\" \"read_user\" \"read_api\" \"read_repository\" \"write_repository\" \"read_registry\" \"write_registry\" \"sudo\" \"admin_mode\" \"create_runner\" \"manage_runner\" \"ai_features\" \"k8s_proxy\" \"read_service_ping\"]","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.231+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:42","@level":"trace","@message":"Received downstream response","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.233419+01:00","diagnostic_error_count":0,"diagnostic_warning_count":0,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_duration_ms":0,"tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.232+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:735","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.233443+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"116d4ad3-e12a-2034-a6e7-55068acd6b0d","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"ValidateResourceConfig","timestamp":"2024-10-29T11:32:55.232+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:811","@level":"trace","@message":"Received request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.233911+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/client_capabilities.go:66","@level":"trace","@message":"Announced client capabilities","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.233934+01:00","tf_client_capability_deferral_allowed":false,"tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tf6serverlogging/downstream_request.go:22","@level":"trace","@message":"Sending request downstream","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.233951+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-mux@v0.16.0/internal/logging/mux.go:19","@level":"trace","@message":"calling downstream server","@module":"sdk.mux","@timestamp":"2024-10-29T11:32:55.233964+01:00","tf_mux_provider":"*proto6server.Server","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233976+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:456","@level":"trace","@message":"Checking ResourceBehaviors lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233987+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:337","@level":"trace","@message":"Checking ProviderTypeName lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.233998+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:510","@level":"trace","@message":"Checking ResourceTypes lock","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234010+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234021+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_integration_telegram","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234032+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234042+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234054+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_compliance_framework","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234064+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_global_level_notifications","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234075+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_protected_environment","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.233+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234085+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_security_policy_attachment","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234095+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_service_account_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234106+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_level_notifications","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234115+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_compliance_framework","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234126+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_integration_custom_issue_tracker","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234141+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_member_role","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234150+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_pages_domain","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234160+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_hook","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234171+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_protected_environment","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234181+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_epic_board","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234192+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_hook","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234203+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_service_account","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234212+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_job_token_scope","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234223+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_push_rules","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234233+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_pipeline_schedule","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234242+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_tag_protection","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234252+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_user_impersonation_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234261+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_application","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234271+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234281+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_group_issue_board","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234290+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_integration_jenkins","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234304+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_job_token_scopes","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234313+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_level_mr_approvals","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234326+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_project_security_policy_attachment","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234336+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_service_custom_issue_tracker","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234345+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_user_runner","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server.go:489","@level":"trace","@message":"Found resource type","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234366+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_branch_protection","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:75","@level":"trace","@message":"Resource implements ResourceWithConfigure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234657+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:82","@level":"trace","@message":"Calling provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234679+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:84","@level":"trace","@message":"Called provider defined Resource Configure","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234692+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234702+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234710+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234723+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_default.go:44","@level":"trace","@message":"attribute is a non-schema attribute, not setting default","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234908+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234927+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234938+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234948+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234964+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234975+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234986+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.234997+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235007+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235021+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.234+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235032+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235045+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235057+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235069+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235079+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235105+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:208","@level":"debug","@message":"Detected value change between proposed new state and prior state","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235133+01:00","tf_attribute_path":"rotation_configuration","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:217","@level":"debug","@message":"Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235145+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235168+01:00","tf_attribute_path":"AttributeName(\"id\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235190+01:00","tf_attribute_path":"AttributeName(\"expires_at\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:357","@level":"trace","@message":"attribute is a non-schema attribute, not marking unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235206+01:00","tf_attribute_path":"AttributeName(\"scopes\").ElementKeyValue(tftypes.String\u003c\"api\"\u003e)","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:396","@level":"trace","@message":"Attribute/block not null in configuration, not marking unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235221+01:00","tf_attribute_path":"AttributeName(\"scopes\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235241+01:00","tf_attribute_path":"AttributeName(\"revoked\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:396","@level":"trace","@message":"Attribute/block not null in configuration, not marking unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235258+01:00","tf_attribute_path":"AttributeName(\"user_id\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235270+01:00","tf_attribute_path":"AttributeName(\"token\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:401","@level":"trace","@message":"attribute is not computed in schema, not marking unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235282+01:00","tf_attribute_path":"AttributeName(\"rotation_configuration\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:396","@level":"trace","@message":"Attribute/block not null in configuration, not marking unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235304+01:00","tf_attribute_path":"AttributeName(\"name\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235317+01:00","tf_attribute_path":"AttributeName(\"active\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:467","@level":"debug","@message":"marking computed attribute that is null in the config as unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235330+01:00","tf_attribute_path":"AttributeName(\"created_at\")","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:231","@level":"trace","@message":"At least one Computed null Config value was changed to unknown","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235354+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235396+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235408+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235421+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235435+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235463+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235474+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235488+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235501+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235513+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2239","@level":"trace","@message":"Calling provider defined planmodifier.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235575+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2249","@level":"trace","@message":"Called provider defined planmodifier.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235595+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2239","@level":"trace","@message":"Calling provider defined planmodifier.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235609+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2249","@level":"trace","@message":"Called provider defined planmodifier.Set","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235626+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:99","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235649+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:100","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235661+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:104","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235673+01:00","tf_attribute_path":"scopes","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235729+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235742+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235752+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235762+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235773+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235783+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:116","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235808+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:117","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235822+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_value.go:121","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235833+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:1439","@level":"trace","@message":"Calling provider defined planmodifier.Int64","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235867+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:1449","@level":"trace","@message":"Called provider defined planmodifier.Int64","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235880+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:1439","@level":"trace","@message":"Calling provider defined planmodifier.Int64","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235892+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:1449","@level":"trace","@message":"Called provider defined planmodifier.Int64","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235904+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:99","@level":"trace","@message":"Type implements TypeWithValidate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235921+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:100","@level":"trace","@message":"Calling provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235932+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwschemadata/data_set_at_path.go:104","@level":"trace","@message":"Called provider defined Type Validate","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235945+01:00","tf_attribute_path":"user_id","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2399","@level":"trace","@message":"Calling provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235976+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2409","@level":"trace","@message":"Called provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.235989+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"expires_at","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.235+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2399","@level":"trace","@message":"Calling provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236047+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"name","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2409","@level":"trace","@message":"Called provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236065+01:00","description":"Once set, the value of this attribute in state will not change.","tf_attribute_path":"name","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2399","@level":"trace","@message":"Calling provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236190+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"name","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/attribute_plan_modification.go:2409","@level":"trace","@message":"Called provider defined planmodifier.String","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236215+01:00","description":"If the value of this attribute changes, Terraform will destroy and recreate the resource.","tf_attribute_path":"name","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:281","@level":"trace","@message":"Resource implements ResourceWithModifyPlan","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236945+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"github.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:302","@level":"trace","@message":"Calling provider defined Resource ModifyPlan","@module":"sdk.framework","@timestamp":"2024-10-29T11:32:55.236959+01:00","tf_mux_provider":"*proto6server.Server","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.236+0100"}
{"@caller":"runtime/panic.go:785","@level":"trace","@message":"Served request","@module":"sdk.proto","@timestamp":"2024-10-29T11:32:55.237520+01:00","tf_proto_version":"6.6","tf_provider_addr":"registry.terraform.io/gitlabhq/gitlab","tf_req_id":"9d0cccb1-0846-5827-5c45-fb9aca41ecc7","tf_resource_type":"gitlab_personal_access_token","tf_rpc":"PlanResourceChange","timestamp":"2024-10-29T11:32:55.237+0100"}
{"@level":"debug","@message":"panic: runtime error: invalid memory address or nil pointer dereference","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239716+01:00"}
{"@level":"debug","@message":"[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0xe889a0]","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239722+01:00"}
{"@level":"debug","@message":"","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239724+01:00"}
{"@level":"debug","@message":"goroutine 69 [running]:","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239727+01:00"}
{"@level":"debug","@message":"gitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider.(*gitlabPersonalAccessTokenResource).ModifyPlan(0xc0005c4028, {0x1381a88, 0xc00066cff0}, {{{{0x1387ba0, 0xc0008366c0}, {0xfd8f20, 0xc0008363f0}}, {0x138af20, 0xc000567590}}, {{{0x1387ba0, ...}, ...}, ...}, ...}, ...)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239729+01:00"}
{"@level":"debug","@message":"\tgitlab.com/gitlab-org/terraform-provider-gitlab/internal/provider/resource_gitlab_personal_access_token.go:284 +0x740","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239732+01:00"}
{"@level":"debug","@message":"github.com/hashicorp/terraform-plugin-framework/internal/fwserver.(*Server).PlanResourceChange(0xc00027a1e0, {0x1381a88, 0xc00066cff0}, 0xc0005105a0, 0xc0008c3528)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239735+01:00"}
{"@level":"debug","@message":"\tgithub.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/fwserver/server_planresourcechange.go:303 +0x19d5","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239738+01:00"}
{"@level":"debug","@message":"github.com/hashicorp/terraform-plugin-framework/internal/proto6server.(*Server).PlanResourceChange(0xc00027a1e0, {0x1381a88?, 0xc00066cf00?}, 0xc00066e3c0)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239741+01:00"}
{"@level":"debug","@message":"\tgithub.com/hashicorp/terraform-plugin-framework@v1.12.0/internal/proto6server/server_planresourcechange.go:64 +0x45c","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239743+01:00"}
{"@level":"debug","@message":"github.com/hashicorp/terraform-plugin-mux/tf6muxserver.(*muxServer).PlanResourceChange(0xc000285880, {0x1381a88?, 0xc00066cc30?}, 0xc00066e3c0)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239746+01:00"}
{"@level":"debug","@message":"\tgithub.com/hashicorp/terraform-plugin-mux@v0.16.0/tf6muxserver/mux_server_PlanResourceChange.go:73 +0x2ad","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239749+01:00"}
{"@level":"debug","@message":"github.com/hashicorp/terraform-plugin-go/tfprotov6/tf6server.(*server).PlanResourceChange(0xc000066140, {0x1381a88?, 0xc00066c1e0?}, 0xc0005c0200)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239751+01:00"}
{"@level":"debug","@message":"\tgithub.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/tf6server/server.go:825 +0x3dc","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239753+01:00"}
{"@level":"debug","@message":"github.com/hashicorp/terraform-plugin-go/tfprotov6/internal/tfplugin6._Provider_PlanResourceChange_Handler({0x114b180, 0xc000066140}, {0x1381a88, 0xc00066c1e0}, 0xc0005c0180, 0x0)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239755+01:00"}
{"@level":"debug","@message":"\tgithub.com/hashicorp/terraform-plugin-go@v0.24.0/tfprotov6/internal/tfplugin6/tfplugin6_grpc.pb.go:527 +0x1a6","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239758+01:00"}
{"@level":"debug","@message":"google.golang.org/grpc.(*Server).processUnaryRPC(0xc0001a4c00, {0x1381a88, 0xc00066c150}, {0x1389340, 0xc0003b6340}, 0xc000672000, 0xc000131c80, 0x1a961c0, 0x0)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239760+01:00"}
{"@level":"debug","@message":"\tgoogle.golang.org/grpc@v1.66.2/server.go:1394 +0xe2b","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239762+01:00"}
{"@level":"debug","@message":"google.golang.org/grpc.(*Server).handleStream(0xc0001a4c00, {0x1389340, 0xc0003b6340}, 0xc000672000)","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239765+01:00"}
{"@level":"debug","@message":"\tgoogle.golang.org/grpc@v1.66.2/server.go:1805 +0xe8b","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239767+01:00"}
{"@level":"debug","@message":"google.golang.org/grpc.(*Server).serveStreams.func2.1()","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239770+01:00"}
{"@level":"debug","@message":"\tgoogle.golang.org/grpc@v1.66.2/server.go:1029 +0x7f","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239772+01:00"}
{"@level":"debug","@message":"created by google.golang.org/grpc.(*Server).serveStreams.func2 in goroutine 15","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239774+01:00"}
{"@level":"debug","@message":"\tgoogle.golang.org/grpc@v1.66.2/server.go:1040 +0x125","@module":"provider.terraform-provider-gitlab_v17.5.0","@timestamp":"2024-10-29T11:32:55.239776+01:00"}
{"@level":"error","@message":"plugin process exited","@module":"provider","@timestamp":"2024-10-29T11:32:55.241557+01:00","error":"exit status 2","id":"210575","plugin":".terraform/providers/registry.terraform.io/gitlabhq/gitlab/17.5.0/linux_amd64/terraform-provider-gitlab_v17.5.0"}
{"@level":"error","@message":"plugin6.(*GRPCProvider).PlanResourceChange","@timestamp":"2024-10-29T11:32:55.241634+01:00","error":"rpc error: code = Canceled desc = context canceled"}
{"@level":"debug","@message":"received EOF, stopping recv loop","@module":"provider.stdio","@timestamp":"2024-10-29T11:32:55.241661+01:00","err":"rpc error: code = Canceled desc = context canceled"}
{"@level":"error","@message":"vertex \"gitlab_personal_access_token.this\" error: Request cancelled","@timestamp":"2024-10-29T11:32:55.241664+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this\": visit complete, with errors","@timestamp":"2024-10-29T11:32:55.241702+01:00"}
{"@level":"trace","@message":"dag/walk: upstream of \"root\" errored, so skipping","@timestamp":"2024-10-29T11:32:55.241723+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": dynamic subgraph encountered errors: Request cancelled","@timestamp":"2024-10-29T11:32:55.241755+01:00"}
{"@level":"error","@message":"vertex \"gitlab_personal_access_token.this (expand)\" error: Request cancelled","@timestamp":"2024-10-29T11:32:55.241763+01:00"}
{"@level":"trace","@message":"vertex \"gitlab_personal_access_token.this (expand)\": visit complete, with errors","@timestamp":"2024-10-29T11:32:55.241770+01:00"}
{"@level":"trace","@message":"dag/walk: upstream of \"provider[\\\"registry.terraform.io/gitlabhq/gitlab\\\"] (close)\" errored, so skipping","@timestamp":"2024-10-29T11:32:55.241796+01:00"}
{"@level":"trace","@message":"dag/walk: upstream of \"root\" errored, so skipping","@timestamp":"2024-10-29T11:32:55.241814+01:00"}
{"@level":"trace","@message":"LoadSchemas: retrieving schema for provider type \"registry.terraform.io/gitlabhq/gitlab\"","@timestamp":"2024-10-29T11:32:55.241859+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.241875+01:00"}
{"@level":"warn","@message":"Planning encountered errors, so plan is not applyable","@timestamp":"2024-10-29T11:32:55.241891+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.241903+01:00"}
{"@level":"trace","@message":"LoadSchemas: retrieving schema for provider type \"registry.terraform.io/gitlabhq/gitlab\"","@timestamp":"2024-10-29T11:32:55.241914+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.241922+01:00"}
{"@level":"info","@message":"backend/local: plan operation completed","@timestamp":"2024-10-29T11:32:55.241947+01:00"}
{"@level":"trace","@message":"LoadSchemas: retrieving schema for provider type \"registry.terraform.io/gitlabhq/gitlab\"","@timestamp":"2024-10-29T11:32:55.241956+01:00"}
{"@level":"trace","@message":"terraform.contextPlugins: Schema for provider \"registry.terraform.io/gitlabhq/gitlab\" is in the global cache","@timestamp":"2024-10-29T11:32:55.241964+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: removing lock metadata file .terraform.tfstate.lock.info","@timestamp":"2024-10-29T11:32:55.242859+01:00"}
{"@level":"trace","@message":"statemgr.Filesystem: unlocking terraform.tfstate using fcntl flock","@timestamp":"2024-10-29T11:32:55.242922+01:00"}
{"@level":"debug","@message":"plugin exited","@module":"provider","@timestamp":"2024-10-29T11:32:55.243055+01:00"}
Additional Detail
- GitLab Terraform Provider Version:
17.5.0 - GitLab Version: Latest gitlab-ce docker image, I also reproduced it on a gitlab-ce 17.5.1
- Terraform Version:
1.9.8
Edited by Ruben Aleman