elastic / terraform-provider-elasticstack

Terraform provider for Elastic Stack
https://registry.terraform.io/providers/elastic/elasticstack/latest/docs
Apache License 2.0
164 stars 85 forks source link

[Bug] Error: failed to import saved objects - 400 Bad Request #702

Closed Alfaxomo closed 1 week ago

Alfaxomo commented 1 month ago

Describe the bug Creating a dashboard and query saved object results in in a 400 Bad Request error. A tag saved object works fine.

To Reproduce Steps to reproduce the behavior:

  1. TF configuration used '...'

main.tf

terraform {
  required_version = ">= 1.0.0"
  required_providers {
    elasticstack = {
      source = "elastic/elasticstack"
      version = "0.11.4"
    }
  }
}

provider "elasticstack" {
  elasticsearch {
    username  = var.elastic_username
    password  = var.elastic_password
    endpoints = [var.elastic_endpoint]
  }
  kibana {
    username  = var.elastic_username
    password  = var.elastic_password
    endpoints = [var.kibana_endpoint]
  }
}

locals.tf

locals {
  dashboards = toset([
    "dashboard0",
  ])
}

locals {
  queries = toset([
    "query0"
  ])
}

locals {
  tags = toset([
    "tag0"
  ])
}

saved_objects.tf

resource "elasticstack_kibana_import_saved_objects" "dashboards" {
  for_each      = local.dashboards
    overwrite     = true
    file_contents = file("saved_objects/dashboard-${each.value}.ndjson")
}

resource "elasticstack_kibana_import_saved_objects" "queries" {
  for_each      = local.queries
    overwrite     = true
    file_contents = file("saved_objects/query-${each.value}.ndjson")
}

resource "elasticstack_kibana_import_saved_objects" "tags" {
  for_each      = local.tags
    overwrite     = true
    file_contents = file("saved_objects/tag-${each.value}.ndjson")
}

Same behavior if I remove the for_each/locals and explicitly define the saved objects.

  1. TF operations to execute to get the error '...' [e.g terraform plan,terraform apply, terraform destroy]
terraform apply
  1. See the error in the output '...'

terraform plan

  # elasticstack_kibana_import_saved_objects.queries["query0"] will be created
  + resource "elasticstack_kibana_import_saved_objects" "queries" {
      + errors          = (known after apply)
      + file_contents   = jsonencode(
            {
              + attributes           = {
                  + description  = ""
                  + filters      = [
                      + {
                          + "$state" = {
                              + store = "appState"
                            }
... more jsonencoded json

  # elasticstack_kibana_import_saved_objects.dashboards["dashboard0"] will be created
  + resource "elasticstack_kibana_import_saved_objects" "dashboards" {
      + errors          = (known after apply)
      + file_contents   = jsonencode(
            {
              + attributes           = {
                  + description           = ""
                  + hits                  = 0
                  + kibanaSavedObjectMeta = {
                      + searchSourceJSON = jsonencode(
                            {
                              + filter = []
                              + query  = {
                                  + language = "kuery"
                                  + query    = ""
                                }
                            }
                        )
                    }
... more jsonencoded json

terraform apply

  # elasticstack_kibana_import_saved_objects.dashboards["dashboard0"] will be created
  + resource "elasticstack_kibana_import_saved_objects" "dashboards" {
      + errors          = (known after apply)
      + file_contents   = jsonencode(
            {
              + attributes           = {
                  + description           = ""
                  + hits                  = 0
                  + kibanaSavedObjectMeta = {
                      + searchSourceJSON = jsonencode(
                            {
                              + filter = []
                              + query  = {
                                  + language = "kuery"
                                  + query    = ""
                                }
                            }
                        )
                    }
... more jsonencoded json

  # elasticstack_kibana_import_saved_objects.queries["query0"] will be created
  + resource "elasticstack_kibana_import_saved_objects" "queries" {
      + errors          = (known after apply)
      + file_contents   = jsonencode(
            {
              + attributes           = {
                  + description  = ""
                  + filters      = [
                      + {
                          + "$state" = {
                              + store = "appState"
                            }
... more jsonencoded json

│ Error: failed to import saved objects
│
│   with elasticstack_kibana_import_saved_objects.dashboards["dashboard0"],
│   on SavedObjects.tf line 3, in resource "elasticstack_kibana_import_saved_objects" "dashboards":
│    3: resource "elasticstack_kibana_import_saved_objects" "dashboards" {
│
│ 400 Bad Request

│ Error: failed to import saved objects
│
│   with elasticstack_kibana_import_saved_objects.queries["query0"],
│   on SavedObjects.tf line 9, in resource "elasticstack_kibana_import_saved_objects" "queries":
│    9: resource "elasticstack_kibana_import_saved_objects" "queries" {
│
│ 400 Bad Request

Expected behavior terraform apply completes successfully

Debug output Run terraform command with TF_LOG=trace and provide extended information on TF operations. Please ensure you redact any base64 encoded credentials from your output. eg

[DEBUG] provider.terraform-provider-elasticstack_v0.11.0: Authorization: Basic xxxxx==

Screenshots If applicable, add screenshots to help explain your problem.

Versions (please complete the following information):

Additional context Add any other context about the problem here.

tobio commented 1 month ago

@Alfaxomo this is almost certainly due to something in the saved_objects/dashboard-${each.value}.ndjson files. I'm assuming these were originally exported from Kibana? Did you include all related objects in the export?

image

Can you check that you're able to import these files into Kibana via the UI to verify they're valid? If that works then we should get more detail about the error in the provider debug logs. Are you able to re-run this with TF_LOG=debug and capture the output?

Alfaxomo commented 1 month ago

Hi @tobio, thanks for looking into this! Yes they were exported from Kibana using the API. I had a lot of objects so I used the API to GET and store them locally to avoid manually exporting via the UI, but I'll do that if that's what works. I did just export a dashboard using the UI and export option with the Include related objects enabled and attempted a terraform apply and got a new error:

╷
│ Error: Provider returned invalid result object after apply
│
│ After the apply operation, the provider still indicated an unknown value for elasticstack_kibana_import_saved_objects.dashboards.errors. All values must be known after apply, so this is always a bug in the
│ provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
╵
╷
│ Error: Value Conversion Error
│
│   with elasticstack_kibana_import_saved_objects.dashboards,
│   on SavedObjects.tf line 3, in resource "elasticstack_kibana_import_saved_objects" "dashboards":
│    3: resource "elasticstack_kibana_import_saved_objects" "dashboards" {
│
│ An unexpected error was encountered trying to convert from struct value. This is always an error in the provider. Please report the following to the provider developer:
│
│ error retrieving field names from struct tags: errors[0]: need a struct tag for "tfsdk" on ID
╵

I will provide the debug output shortly.

Alfaxomo commented 1 month ago

Here is the debug output:

 terraform init && TF_LOG=debug terraform apply -auto-approve

Initializing the backend...

Initializing provider plugins...
- Finding elastic/elasticstack versions matching "0.11.4"...
- Installing elastic/elasticstack v0.11.4...
- Installed elastic/elasticstack v0.11.4 (signed by a HashiCorp partner, key ID 7FE579EDEC6DAA7B)

Partner and community providers are signed by their developers.
If you'd like to know more about provider signing, you can read about it here:
https://www.terraform.io/docs/cli/plugins/signing.html

Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
2024-08-09T10:39:48.630-0400 [INFO]  Terraform version: 1.3.7
2024-08-09T10:39:48.630-0400 [DEBUG] using github.com/hashicorp/go-tfe v1.9.0
2024-08-09T10:39:48.630-0400 [DEBUG] using github.com/hashicorp/hcl/v2 v2.15.0
2024-08-09T10:39:48.630-0400 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2
2024-08-09T10:39:48.630-0400 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734
2024-08-09T10:39:48.630-0400 [DEBUG] using github.com/zclconf/go-cty v1.12.1
2024-08-09T10:39:48.630-0400 [INFO]  Go runtime version: go1.19.4
2024-08-09T10:39:48.630-0400 [INFO]  CLI args: []string{"terraform", "apply", "-auto-approve"}
2024-08-09T10:39:48.631-0400 [DEBUG] Attempting to open CLI config file: /home/alfaxomo/.terraformrc
2024-08-09T10:39:48.631-0400 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory /home/alfaxomo/.terraform.d/plugins
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory /home/alfaxomo/.local/share/terraform/plugins
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2024-08-09T10:39:48.631-0400 [DEBUG] ignoring non-existing provider search directory /var/lib/snapd/desktop/terraform/plugins
2024-08-09T10:39:48.631-0400 [INFO]  CLI command args: []string{"apply", "-auto-approve"}
2024-08-09T10:39:48.632-0400 [DEBUG] New state was assigned lineage "4578cfc3-4858-21e4-d877-1fef9bc225f2"
2024-08-09T10:39:48.702-0400 [DEBUG] checking for provisioner in "."
2024-08-09T10:39:48.702-0400 [DEBUG] checking for provisioner in "/home/alfaxomo/.terraform.versions"
2024-08-09T10:39:48.702-0400 [INFO]  backend/local: starting Apply operation
2024-08-09T10:39:48.707-0400 [DEBUG] created provider logger: level=debug
2024-08-09T10:39:48.707-0400 [INFO]  provider: configuring client automatic mTLS
2024-08-09T10:39:48.718-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 args=[.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4]
2024-08-09T10:39:48.718-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253499
2024-08-09T10:39:48.718-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4
2024-08-09T10:39:48.722-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: configuring server automatic mTLS: timestamp=2024-08-09T10:39:48.721-0400
2024-08-09T10:39:48.728-0400 [DEBUG] provider: using plugin: version=6
2024-08-09T10:39:48.728-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: plugin address: address=/tmp/plugin235045987 network=unix timestamp=2024-08-09T10:39:48.728-0400
2024-08-09T10:39:48.747-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-08-09T10:39:48.748-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253499
2024-08-09T10:39:48.748-0400 [DEBUG] provider: plugin exited
2024-08-09T10:39:48.748-0400 [DEBUG] Building and walking validate graph
2024-08-09T10:39:48.748-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.ec_apikey" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.env" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.component_template (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.tags (expand)" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "output.component_template (expand)" references: [local.component_template (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "output.env (expand)" references: [var.env]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.region" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "output.policy (expand)" references: [local.policy (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/elastic/elasticstack\"]" references: [var.elastic_endpoint var.elastic_username var.elastic_password var.kibana_endpoint var.elastic_password var.elastic_username]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.elastic_endpoint" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.policy (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.queries (expand)" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "output.contextkey (expand)" references: [local.contextkey (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.kibana_endpoint" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.features (expand)" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.elastic_password" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.elastic_deployment_template_id" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.elastic_username" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.contextkey (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "local.dashboards (expand)" references: []
2024-08-09T10:39:48.748-0400 [DEBUG] ReferenceTransformer: "var.elastic_version" references: []
2024-08-09T10:39:48.749-0400 [DEBUG] Starting graph walk: walkValidate
2024-08-09T10:39:48.749-0400 [DEBUG] created provider logger: level=debug
2024-08-09T10:39:48.749-0400 [INFO]  provider: configuring client automatic mTLS
2024-08-09T10:39:48.753-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 args=[.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4]
2024-08-09T10:39:48.753-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253512
2024-08-09T10:39:48.753-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4
2024-08-09T10:39:48.756-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: configuring server automatic mTLS: timestamp=2024-08-09T10:39:48.756-0400
2024-08-09T10:39:48.763-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: plugin address: address=/tmp/plugin4243894856 network=unix timestamp=2024-08-09T10:39:48.762-0400
2024-08-09T10:39:48.763-0400 [DEBUG] provider: using plugin: version=6
2024-08-09T10:39:48.786-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-08-09T10:39:48.786-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253512
2024-08-09T10:39:48.786-0400 [DEBUG] provider: plugin exited
2024-08-09T10:39:48.786-0400 [INFO]  backend/local: apply calling Plan
2024-08-09T10:39:48.786-0400 [DEBUG] Building and walking plan graph for NormalMode
2024-08-09T10:39:48.787-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.dashboards (expand)" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.tags (expand)" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.elastic_version" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.ec_apikey" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.elastic_password" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.elastic_deployment_template_id" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.elastic_username" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.features (expand)" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "output.contextkey (expand)" references: [local.contextkey (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "output.env (expand)" references: [var.env]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.region" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.elastic_endpoint" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.env" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.policy (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/elastic/elasticstack\"]" references: [var.elastic_username var.elastic_password var.elastic_endpoint var.elastic_password var.elastic_username var.kibana_endpoint]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "var.kibana_endpoint" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.component_template (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "output.policy (expand)" references: [local.policy (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.contextkey (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "local.queries (expand)" references: []
2024-08-09T10:39:48.787-0400 [DEBUG] ReferenceTransformer: "output.component_template (expand)" references: [local.component_template (expand)]
2024-08-09T10:39:48.787-0400 [DEBUG] Starting graph walk: walkPlan
2024-08-09T10:39:48.788-0400 [DEBUG] created provider logger: level=debug
2024-08-09T10:39:48.788-0400 [INFO]  provider: configuring client automatic mTLS
2024-08-09T10:39:48.792-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 args=[.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4]
2024-08-09T10:39:48.792-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253527
2024-08-09T10:39:48.792-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4
2024-08-09T10:39:48.795-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: configuring server automatic mTLS: timestamp=2024-08-09T10:39:48.795-0400
2024-08-09T10:39:48.801-0400 [DEBUG] provider: using plugin: version=6
2024-08-09T10:39:48.802-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: plugin address: network=unix address=/tmp/plugin2814519063 timestamp=2024-08-09T10:39:48.801-0400
2024-08-09T10:39:48.824-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards" references: []
elasticstack_kibana_import_saved_objects.dashboards: Refreshing state... [id=50814ab0-5065-46cf-8561-14f361d226e1]
2024-08-09T10:39:48.836-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: Read isn't supported for elasticstack_kibana_import_saved_objects: tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/elastic/terraform-provider-elasticstack/internal/kibana/import_saved_objects/read.go:11 @module=elasticstack tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.836-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[0].destination_id tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.836-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[0].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[0].meta.icon tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[0].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[0].meta tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_attribute_path=success_results[0].type tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[0] tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[1].id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[1].meta.icon tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[1].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @module=sdk.framework timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[1].meta tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[1].type tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[1].destination_id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[1] tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_attribute_path=success_results[2].type tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[2].destination_id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[2].id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[2].meta.title tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[2].meta.icon tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_attribute_path=success_results[2].meta tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[2] tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[3].type tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource tf_mux_provider=*proto6server.Server @module=sdk.framework tf_attribute_path=success_results[3].destination_id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.836-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[3].id tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[3].meta.icon tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[3].meta.title timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[3].meta timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[3] tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[4].meta.icon tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_attribute_path=success_results[4].meta.title tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[4].meta @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[4].type timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[4].destination_id tf_mux_provider=*proto6server.Server @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[4].id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[4] @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[5].type tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.837-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[5].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[5].id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[5].meta.title tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[5].meta.icon tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=success_results[5].meta tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[5] tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[6].destination_id tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[6].id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[6].meta.icon tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[6].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_mux_provider=*proto6server.Server tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[6].meta tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[6].type tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[6] tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[7].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.838-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_rpc=ReadResource tf_attribute_path=success_results[7].id tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[7].meta.icon tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[7].meta.title tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[7].meta timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[7].type tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[7] tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[8].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[8].meta.title tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[8].meta.icon tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[8].meta tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_attribute_path=success_results[8].type timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[8].destination_id tf_mux_provider=*proto6server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[8] tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @module=sdk.framework tf_attribute_path=success_results[9].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[9].meta.icon tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[9].meta.title tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=success_results[9].meta tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[9].type tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[9].destination_id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[9] tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[10].meta.title tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[10].meta.icon tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[10].meta tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[10].type tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[10].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[10].id tf_mux_provider=*proto6server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[10] tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[11].id tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[11].meta.icon tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[11].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[11].meta tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[11].type tf_mux_provider=*proto6server.Server tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[11].destination_id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[11] tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[12].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_mux_provider=*proto6server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[12].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[12].meta.icon tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[12].meta.title tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[12].meta timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[12].type @module=sdk.framework tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.839-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource tf_attribute_path=success_results[12] timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_rpc=ReadResource tf_attribute_path=success_results[13].id timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[13].meta.icon tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[13].meta.title tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[13].meta tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[13].type tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[13].destination_id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[13] tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[14].type tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @module=sdk.framework tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[14].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[14].id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[14].meta.icon timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[14].meta.title tf_mux_provider=*proto6server.Server tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[14].meta tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[14] tf_rpc=ReadResource tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[15].destination_id tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[15].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[15].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[15].meta.icon tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[15].meta tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[15].type tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_rpc=ReadResource tf_attribute_path=success_results[15] tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[16].destination_id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[16].id tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[16].meta.icon tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @module=sdk.framework tf_attribute_path=success_results[16].meta.title tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[16].meta tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @module=sdk.framework tf_attribute_path=success_results[16].type tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[16] tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_attribute_path=success_results[17].meta.title tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_attribute_path=success_results[17].meta.icon timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[17].meta tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[17].type tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_resource_type=elasticstack_kibana_import_saved_objects tf_attribute_path=success_results[17].destination_id tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[17].id tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[17] tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=success_results[18].type tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[18].destination_id tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[18].id tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_attribute_path=success_results[18].meta.icon tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_attribute_path=success_results[18].meta.title tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_attribute_path=success_results[18].meta tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[18] tf_mux_provider=*proto6server.Server @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_rpc=ReadResource tf_attribute_path=success_results[19].id tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[19].meta.icon tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[19].meta.title tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results[19].meta tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success_results[19].type tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[19].destination_id tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_results[19] tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=success_results tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.837-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_attribute_path=overwrite tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource timestamp=2024-08-09T10:39:48.838-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=ReadResource @module=sdk.framework tf_attribute_path=id @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.838-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 @module=sdk.framework tf_attribute_path=success_count tf_mux_provider=*proto6server.Server timestamp=2024-08-09T10:39:48.838-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=file_contents tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.838-0400
2024-08-09T10:39:48.840-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Value switched to prior value due to semantic equality logic: tf_mux_provider=*proto6server.Server tf_req_id=1b4cb1c7-7ed1-c6e7-ba28-7c38ec23cb49 tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ReadResource @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwschemadata/value_semantic_equality.go:87 tf_attribute_path=success timestamp=2024-08-09T10:39:48.838-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:217 tf_mux_provider=*proto6server.Server tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 @module=sdk.framework tf_attribute_path=AttributeName("success_results") tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_attribute_path=AttributeName("success") tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path=AttributeName("id") tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path=AttributeName("success_count") tf_mux_provider=*proto6server.Server tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.842-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=1a288ba3-ab93-0d47-9460-502913e1383a @module=sdk.framework tf_attribute_path=AttributeName("errors") tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 timestamp=2024-08-09T10:39:48.842-0400
2024-08-09T10:39:48.844-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-08-09T10:39:48.845-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253527
2024-08-09T10:39:48.845-0400 [DEBUG] provider: plugin exited
2024-08-09T10:39:48.846-0400 [DEBUG] building apply graph to check for errors
2024-08-09T10:39:48.846-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.846-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.846-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "output.component_template (expand)" references: [local.component_template (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "output.contextkey (expand)" references: [local.contextkey (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.elastic_version" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.elastic_username" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.kibana_endpoint" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.features (expand)" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.component_template (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.contextkey (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "output.env (expand)" references: [var.env]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.policy (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.tags (expand)" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.elastic_endpoint" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.dashboards (expand)" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "output.policy (expand)" references: [local.policy (expand)]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/elastic/elasticstack\"]" references: [var.elastic_password var.elastic_endpoint var.elastic_username var.kibana_endpoint var.elastic_password var.elastic_username]
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.ec_apikey" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.region" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.elastic_password" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.elastic_deployment_template_id" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "var.env" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] ReferenceTransformer: "local.queries (expand)" references: []
2024-08-09T10:39:48.846-0400 [DEBUG] pruneUnusedNodes: local.dashboards (expand) is no longer needed, removing
2024-08-09T10:39:48.846-0400 [DEBUG] pruneUnusedNodes: local.queries (expand) is no longer needed, removing
2024-08-09T10:39:48.846-0400 [DEBUG] pruneUnusedNodes: local.tags (expand) is no longer needed, removing

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
-/+ destroy and then create replacement

Terraform will perform the following actions:

  # elasticstack_kibana_import_saved_objects.dashboards is tainted, so must be replaced
-/+ resource "elasticstack_kibana_import_saved_objects" "dashboards" {
      + errors          = (known after apply)
      ~ id              = "50814ab0-5065-46cf-8561-14f361d226e1" -> (known after apply)
      ~ success         = false -> (known after apply)
      ~ success_count   = 20 -> (known after apply)
      ~ success_results = [
          - {
              - destination_id = ""
              - id             = "658e7f90-07a4-11ea-b4b9-f3d8d475c905"
              - meta           = {
                  - icon  = "indexPatternApp"
                  - title = "[redacted]"
                }
              - type           = "index-pattern"
            },
          - {
              - destination_id = ""
              - id             = "509efa00-72f6-11ec-864e-f91b68927894"
              - meta           = {
                  - icon  = "lensApp"
                  - title = "[redacted]"
                }
              - type           = "lens"
            },
          - {
              - destination_id = ""
              - id             = "14a141b0-73b5-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "930d4829-48f4-456a-98bb-e93122fa4bca"
              - meta           = {
                  - icon  = "indexPatternApp"
                  - title = "[redacted]"
                }
              - type           = "index-pattern"
            },
          - {
              - destination_id = ""
              - id             = "6705ec10-73bc-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "lensApp"
                  - title = "[redacted]"
                }
              - type           = "lens"
            },
          - {
              - destination_id = ""
              - id             = "be461bc0-0ba0-11ea-b151-954d48d0eae6"
              - meta           = {
                  - icon  = "indexPatternApp"
                  - title = "[redacted]"
                }
              - type           = "index-pattern"
            },
          - {
              - destination_id = ""
              - id             = "57a67c90-73bb-11ec-864e-f91b68927894"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "346bfa40-7229-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "lensApp"
                  - title = "[redacted]"
                }
              - type           = "lens"
            },
          - {
              - destination_id = ""
              - id             = "22dfcd50-73b5-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "793ba280-73bc-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "lensApp"
                  - title = "[redacted]"
                }
              - type           = "lens"
            },
          - {
              - destination_id = ""
              - id             = "1c8811b0-0c83-11ea-b151-954d48d0eae6"
              - meta           = {
                  - icon  = "indexPatternApp"
                  - title = "[redacted]"
                }
              - type           = "index-pattern"
            },
          - {
              - destination_id = ""
              - id             = "6225c170-0c84-11eb-b9e9-a377b1114e98"
              - meta           = {
                  - icon  = "visualizeApp"
                  - title = "[redacted]"
                }
              - type           = "visualization"
            },
          - {
              - destination_id = ""
              - id             = "841de460-0c84-11eb-b9e9-a377b1114e98"
              - meta           = {
                  - icon  = "visualizeApp"
                  - title = "[redacted]"
                }
              - type           = "visualization"
            },
          - {
              - destination_id = ""
              - id             = "8d896db0-0c90-11eb-b9e9-a377b1114e98"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "b05550d0-0c8f-11eb-977b-cd2574857abe"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "090e1f40-0c8b-11eb-b9e9-a377b1114e98"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "37b04090-0c8a-11eb-b9e9-a377b1114e98"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "658d5240-0c8b-11eb-977b-cd2574857abe"
              - meta           = {
                  - icon  = "dashboardApp"
                  - title = "[redacted]"
                }
              - type           = "dashboard"
            },
          - {
              - destination_id = ""
              - id             = "6402b3a0-73bb-11ec-864e-f91b68927894"
              - meta           = {
                  - icon  = "discoverApp"
                  - title = "[redacted]"
                }
              - type           = "search"
            },
          - {
              - destination_id = ""
              - id             = "7d1576d0-72f7-11ec-8939-f732790020ad"
              - meta           = {
                  - icon  = "dashboardApp"
                  - title = "[redacted]"
                }
              - type           = "dashboard"
            },
        ] -> (known after apply)
        # (2 unchanged attributes hidden)
    }

Plan: 1 to add, 0 to change, 1 to destroy.
2024-08-09T10:39:48.848-0400 [INFO]  backend/local: apply calling Apply
2024-08-09T10:39:48.849-0400 [DEBUG] Building and walking apply graph for NormalMode plan
2024-08-09T10:39:48.849-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.849-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.849-0400 [DEBUG] ProviderTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/elastic/elasticstack"]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "local.policy (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "local.contextkey (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "output.policy (expand)" references: [local.policy (expand)]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "output.component_template (expand)" references: [local.component_template (expand)]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "output.contextkey (expand)" references: [local.contextkey (expand)]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards (expand)" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "var.elastic_username" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "var.kibana_endpoint" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "var.elastic_deployment_template_id" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "var.ec_apikey" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "var.region" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "local.features (expand)" references: []
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "output.env (expand)" references: [var.env]
2024-08-09T10:39:48.849-0400 [DEBUG] ReferenceTransformer: "elasticstack_kibana_import_saved_objects.dashboards" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "var.env" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "var.elastic_endpoint" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "local.dashboards (expand)" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "local.queries (expand)" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "var.elastic_password" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "var.elastic_version" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "local.component_template (expand)" references: [local.features (expand)]
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "local.tags (expand)" references: []
2024-08-09T10:39:48.850-0400 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/elastic/elasticstack\"]" references: [var.elastic_password var.elastic_endpoint var.elastic_username var.elastic_password var.elastic_username var.kibana_endpoint]
2024-08-09T10:39:48.850-0400 [DEBUG] pruneUnusedNodes: local.dashboards (expand) is no longer needed, removing
2024-08-09T10:39:48.850-0400 [DEBUG] pruneUnusedNodes: local.queries (expand) is no longer needed, removing
2024-08-09T10:39:48.850-0400 [DEBUG] pruneUnusedNodes: local.tags (expand) is no longer needed, removing
2024-08-09T10:39:48.850-0400 [DEBUG] Starting graph walk: walkApply
2024-08-09T10:39:48.850-0400 [DEBUG] created provider logger: level=debug
2024-08-09T10:39:48.851-0400 [INFO]  provider: configuring client automatic mTLS
2024-08-09T10:39:48.854-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 args=[.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4]
2024-08-09T10:39:48.854-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253544
2024-08-09T10:39:48.854-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4
2024-08-09T10:39:48.858-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: configuring server automatic mTLS: timestamp=2024-08-09T10:39:48.858-0400
2024-08-09T10:39:48.864-0400 [DEBUG] provider: using plugin: version=6
2024-08-09T10:39:48.864-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: plugin address: address=/tmp/plugin3040830486 network=unix timestamp=2024-08-09T10:39:48.864-0400
elasticstack_kibana_import_saved_objects.dashboards: Destroying... [id=50814ab0-5065-46cf-8561-14f361d226e1]
2024-08-09T10:39:48.894-0400 [INFO]  Starting apply for elasticstack_kibana_import_saved_objects.dashboards
2024-08-09T10:39:48.894-0400 [DEBUG] elasticstack_kibana_import_saved_objects.dashboards: applying the planned Delete change
2024-08-09T10:39:48.896-0400 [INFO]  provider.terraform-provider-elasticstack_v0.11.4: Delete isn't supported for elasticstack_kibana_import_saved_objects: @module=elasticstack tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ApplyResourceChange @caller=github.com/elastic/terraform-provider-elasticstack/internal/kibana/import_saved_objects/delete.go:11 tf_mux_provider=*proto6server.Server tf_req_id=a708e9a8-12e1-03d3-1f34-e9d0ee98c649 timestamp=2024-08-09T10:39:48.896-0400
elasticstack_kibana_import_saved_objects.dashboards: Destruction complete after 0s
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: Marking Computed attributes with null configuration values as unknown (known after apply) in the plan to prevent potential Terraform errors: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects @module=sdk.framework tf_mux_provider=*proto6server.Server tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:217 timestamp=2024-08-09T10:39:48.921-0400
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_attribute_path=AttributeName("success") tf_mux_provider=*proto6server.Server tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.921-0400
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: @module=sdk.framework tf_attribute_path=AttributeName("errors") tf_mux_provider=*proto6server.Server tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 timestamp=2024-08-09T10:39:48.921-0400
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_attribute_path=AttributeName("id") tf_mux_provider=*proto6server.Server tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 tf_rpc=PlanResourceChange @module=sdk.framework tf_resource_type=elasticstack_kibana_import_saved_objects timestamp=2024-08-09T10:39:48.921-0400
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path=AttributeName("success_count") tf_mux_provider=*proto6server.Server tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 timestamp=2024-08-09T10:39:48.921-0400
2024-08-09T10:39:48.921-0400 [DEBUG] provider.terraform-provider-elasticstack_v0.11.4: marking computed attribute that is null in the config as unknown: tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_attribute_path=AttributeName("success_results") tf_mux_provider=*proto6server.Server tf_req_id=8c11ba95-841d-4aa7-823c-c0297fcd0959 tf_resource_type=elasticstack_kibana_import_saved_objects @caller=github.com/hashicorp/terraform-plugin-framework@v1.9.0/internal/fwserver/server_planresourcechange.go:459 timestamp=2024-08-09T10:39:48.921-0400
elasticstack_kibana_import_saved_objects.dashboards: Creating...
2024-08-09T10:39:48.923-0400 [INFO]  Starting apply for elasticstack_kibana_import_saved_objects.dashboards
2024-08-09T10:39:48.923-0400 [DEBUG] elasticstack_kibana_import_saved_objects.dashboards: applying the planned Create change
2024-08-09T10:39:49.586-0400 [ERROR] provider.terraform-provider-elasticstack_v0.11.4: Response contains error diagnostic: tf_proto_version=6.6 tf_provider_addr=registry.terraform.io/elastic/elasticstack tf_resource_type=elasticstack_kibana_import_saved_objects tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-go@v0.23.0/tfprotov6/internal/diag/diagnostics.go:58 diagnostic_attribute=AttributeName("errors").ElementKeyInt(0) diagnostic_detail="An unexpected error was encountered trying to convert from struct value. This is always an error in the provider. Please report the following to the provider developer:

error retrieving field names from struct tags: errors[0]: need a struct tag for "tfsdk" on ID" diagnostic_summary="Value Conversion Error" tf_req_id=428b6c1e-07c7-a9db-a5c3-39764628b248 @module=sdk.proto diagnostic_severity=ERROR timestamp=2024-08-09T10:39:49.585-0400
2024-08-09T10:39:49.620-0400 [ERROR] vertex "elasticstack_kibana_import_saved_objects.dashboards" error: Value Conversion Error
2024-08-09T10:39:49.620-0400 [ERROR] vertex "elasticstack_kibana_import_saved_objects.dashboards" error: Provider returned invalid result object after apply
╷
│ Error: Provider returned invalid result object after apply
│
│ After the apply operation, the provider still indicated an unknown value for elasticstack_kibana_import_saved_objects.dashboards.errors. All values must be known after apply, so this is always a bug in the
│ provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
╵
╷
│ Error: Value Conversion Error
│
│   with elasticstack_kibana_import_saved_objects.dashboards,
│   on SavedObjects.tf line 3, in resource "elasticstack_kibana_import_saved_objects" "dashboards":
│    3: resource "elasticstack_kibana_import_saved_objects" "dashboards" {
│
│ An unexpected error was encountered trying to convert from struct value. This is always an error in the provider. Please report the following to the provider developer:
│
│ error retrieving field names from struct tags: errors[0]: need a struct tag for "tfsdk" on ID
╵
2024-08-09T10:39:49.633-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2024-08-09T10:39:49.635-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/elastic/elasticstack/0.11.4/linux_amd64/terraform-provider-elasticstack_v0.11.4 pid=253544
2024-08-09T10:39:49.635-0400 [DEBUG] provider: plugin exited
tobio commented 3 weeks ago

@Alfaxomo are you able to get the debug output here again, but with 0.11.5. There was a bug fix in there which means we should see the actual Kibana response and will be able to track this issue down more easily.

Alternatively, if you're able to share the exported saved object file (I can send you a link to share it directly with me if that helps) I can take a look at what's causing the provider error.

Alfaxomo commented 3 weeks ago

@tobio are you able to provide a link for the debug output?

tobio commented 3 weeks ago

Sure, can you reach out to either myself directly (toby.brain@elastic.co) or via support@elastic.co (referencing this issue should find it's way to me) and I'll get one through.