ionos-cloud / terraform-provider-ionoscloud

The IonosCloud Terraform provider gives the ability to deploy and configure resources using the IonosCloud APIs.
Mozilla Public License 2.0
34 stars 23 forks source link

bug: unable to increase volume inplace via tf #495

Closed hegerdes closed 8 months ago

hegerdes commented 9 months ago

Description

Unable to update volume inplace. Plan works, apply errors with "Http method 'PATCH' not allowed. Expected one of [POST,GET,OPTIONS] and when you run apply again it says that there are no changes to make because all is up to date - thats wrong to. So also a bug in state managment and actal state

Expected behavior

Volume increase works

Environment

Terraform version:

Terraform v1.6.1
on windows_amd64

Provider version:

+ provider registry.terraform.io/hashicorp/random v3.5.1
+ provider registry.terraform.io/ionos-cloud/ionoscloud v6.4.10

OS:

Windows 11 amd64

Configuration Files

How to Reproduce

Create infra, update volume size, apply infra - error
Apply again - TF says its all up to date and nothing to do - wrong volume still has old size

# Code
resource "ionoscloud_server" "example" {
  name          = "vm-${var.vm_prefix}-${random_string.rnd[count.index].result}"
  datacenter_id = local.datacenter
  cores         = 2
  count         = 1
  ram           = 4096
  cpu_family    = upper(var.cpu_family)
  vm_state      = upper(var.vm_state)
  image_name    = local.image_name
  boot_cdrom    = local.boot_cdrom

  volume {
    licence_type = lower(var.os_family) == "windows" ? upper(var.os_family) : null
    name         = "vol-system-${random_string.rnd[count.index].result}"
    size         = var.boot_volume_size
    disk_type    = "SSD"
    bus          = "VIRTIO"
  }

  lifecycle {
    # Thes things can not be changed after creation.
    # Any changes will be ignored
    ignore_changes = [
      volume[0].user_data,
      volume[0].disk_type,
      ssh_keys
    ]
  }

}

Error and Debug Output

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # ionoscloud_server.example[0] will be updated in-place
  ~ resource "ionoscloud_server" "example" {
        id                = "d61cfe8f-c0f7-4798-b244-d63b542024ec"
        name              = "vm-tf-demo-l88buc"
        # (12 unchanged attributes hidden)

      ~ volume {
            name                   = "vol-system-l88buc"
          ~ size                   = 200 -> 256
            # (13 unchanged attributes hidden)
        }

        # (4 unchanged blocks hidden)
    }

Plan: 0 to add, 1 to change, 0 to destroy.

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

ionoscloud_server.example[0]: Modifying... [id=d61cfe8f-c0f7-4798-b244-d63b542024ec]
╷
│ Error: error patching volume (d61cfe8f-c0f7-4798-b244-d63b542024ec) (405 Method Not Allowed {
│   "httpStatus" : 405,
│   "messages" : [ {
│     "errorCode" : "307",
│     "message" : "Http method 'PATCH' not allowed. Expected one of [POST,GET,OPTIONS]"
│   } ]
│ }
│ )
│
│   with ionoscloud_server.example[0],
│   on main.tf line 92, in resource "ionoscloud_server" "example":
│   92: resource "ionoscloud_server" "example" {
│
╵

Additional Notes

Resize over API with HTTP-Client (PATCH) works just the TF provider is broken.

References

cbeti-ionos commented 9 months ago

Hi, I tried reproducing the issue with the plan you have provided and I couldn't get the same results. Could you please try running with the debug flags enabled: TF_LOG=debug IONOS_LOG_LEVEL=trace

And provide us with the log of the patch request that fails, so that we can take a closer look. :exclamation::exclamation::exclamation:Note, these logs will contain your credentials in plain text, so make sure to remove them beforehand.

hegerdes commented 9 months ago

I run it again - It works with a Linux based image but not a Windows one. Strange since the drive shout not care what bits are one it.

TF Debug Log ``` 2023-11-22T12:07:52.588+0100 [INFO] Terraform version: 1.6.1 2023-11-22T12:07:52.589+0100 [DEBUG] using github.com/hashicorp/go-tfe v1.34.0 2023-11-22T12:07:52.589+0100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.18.1 2023-11-22T12:07:52.589+0100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 2023-11-22T12:07:52.589+0100 [DEBUG] using github.com/zclconf/go-cty v1.14.1 2023-11-22T12:07:52.589+0100 [INFO] Go runtime version: go1.21.1 2023-11-22T12:07:52.589+0100 [INFO] CLI args: []string{"C:\\Users\\HenrikGerdes\\Tools\\terraform.exe", "apply", "-var-file", "windows.tfvars.json", "-auto-approve", "-no-color"} 2023-11-22T12:07:52.593+0100 [DEBUG] Attempting to open CLI config file: C:\Users\HenrikGerdes\AppData\Roaming\terraform.rc 2023-11-22T12:07:52.593+0100 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. 2023-11-22T12:07:52.595+0100 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins 2023-11-22T12:07:52.595+0100 [DEBUG] ignoring non-existing provider search directory C:\Users\HenrikGerdes\AppData\Roaming\terraform.d\plugins 2023-11-22T12:07:52.596+0100 [DEBUG] ignoring non-existing provider search directory C:\Users\HenrikGerdes\AppData\Roaming\HashiCorp\Terraform\plugins 2023-11-22T12:07:52.597+0100 [INFO] CLI command args: []string{"apply", "-var-file", "windows.tfvars.json", "-auto-approve", "-no-color"} 2023-11-22T12:07:52.598+0100 [DEBUG] New state was assigned lineage "a6cd92f6-0f78-874e-f981-907d22090eb3" 2023-11-22T12:07:52.666+0100 [DEBUG] checking for provisioner in "." 2023-11-22T12:07:52.666+0100 [DEBUG] checking for provisioner in "C:\\Users\\HenrikGerdes\\Tools" 2023-11-22T12:07:52.681+0100 [INFO] backend/local: starting Apply operation 2023-11-22T12:07:55.399+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.399+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.421+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:07:55.433+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=2944 2023-11-22T12:07:55.433+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:07:55.456+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.454+0100" 2023-11-22T12:07:55.478+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.478+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:07:55.478+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 @module=sdk.framework timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_rpc=GetProviderSchema tf_resource_type=random_uuid timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_uuid tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_id @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_id tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_integer @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_integer tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_password tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_resource_type=random_password tf_rpc=GetProviderSchema @module=sdk.framework timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_pet timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_pet tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_shuffle tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_shuffle timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_resource_type=random_string tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.493+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4faa44b3-0e59-b9c1-7745-2dd27cb8a8a9 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 timestamp="2023-11-22T12:07:55.493+0100" 2023-11-22T12:07:55.496+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:07:55.497+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:55.517+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=2944 2023-11-22T12:07:55.522+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:55.524+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.525+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.531+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:07:55.540+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=16792 2023-11-22T12:07:55.540+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:07:55.568+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.567+0100" 2023-11-22T12:07:55.591+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:07:55.591+0100" 2023-11-22T12:07:55.591+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.622+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:55.636+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=16792 2023-11-22T12:07:55.640+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:55.641+0100 [DEBUG] Building and walking validate graph 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "random_string.rnd" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.642+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.643+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example] 2023-11-22T12:07:55.643+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub" references: [local.datacenter (expand) var.vm_prefix] 2023-11-22T12:07:55.643+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt" references: [local.datacenter (expand) var.vm_prefix] 2023-11-22T12:07:55.643+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:07:55.643+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example ionoscloud_nic.example] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example" references: [var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules local.datacenter (expand) var.firewall_rules var.vm_count var.firewall_rules ionoscloud_nic.example var.vm_count ionoscloud_server.example var.vm_count] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example ionoscloud_datacenter.example] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom" references: [var.os_family var.dc_location var.vm_image] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example" references: [var.volumes var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd var.vm_count ionoscloud_server.example var.vm_count var.volumes var.vm_count var.volumes local.datacenter (expand)] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:07:55.644+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example" references: [var.vm_count var.cpu_family local.boot_cdrom (expand) local.image_name (expand) var.vm_prefix random_string.rnd var.vm_cores local.datacenter (expand) var.vm_state var.vm_ram var.os_family var.os_family random_string.rnd var.boot_volume_size local.user_data_b64 (expand) var.boot_volume_type ionoscloud_lan.example-pvt var.vm_prefix random_string.rnd random_string.rnd] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example ionoscloud_datacenter.example] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "random_string.rnd" references: [var.vm_count] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example" references: [var.vm_count ionoscloud_ipblock.example random_string.rnd var.firewall_aktive var.firewall_rules ionoscloud_lan.example-pub ionoscloud_server.example local.datacenter (expand)] 2023-11-22T12:07:55.645+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:07:55.650+0100 [DEBUG] Starting graph walk: walkValidate 2023-11-22T12:07:55.651+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.652+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.661+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:07:55.666+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=15844 2023-11-22T12:07:55.666+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:07:55.689+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.689+0100" 2023-11-22T12:07:55.715+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.715+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:07:55.715+0100" 2023-11-22T12:07:55.726+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.727+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.735+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:07:55.739+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=12864 2023-11-22T12:07:55.740+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:07:55.762+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.762+0100" 2023-11-22T12:07:55.781+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.781+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10001 network=tcp timestamp="2023-11-22T12:07:55.781+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_string tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_string tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_uuid tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_uuid tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_id tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_id @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_integer tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_integer tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_rpc=GetProviderSchema tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_pet tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_rpc=GetProviderSchema tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_pet tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_resource_type=random_shuffle @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.796+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_resource_type=random_shuffle tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 @module=sdk.framework tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 timestamp="2023-11-22T12:07:55.796+0100" 2023-11-22T12:07:55.797+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 timestamp="2023-11-22T12:07:55.797+0100" 2023-11-22T12:07:55.797+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=6917b1ad-c82d-842e-96de-146e97509d68 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 timestamp="2023-11-22T12:07:55.797+0100" 2023-11-22T12:07:55.801+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_numeric tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string @module=sdk.framework timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=min_special tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=min_special tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_resource_type=random_string tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @module=sdk.framework timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=length tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: description="value must be at least 1" tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: tf_attribute_path=length tf_resource_type=random_string tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 @module=sdk.framework description="value must be at least 1" tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.803+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_attribute_path=length tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.803+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_lower tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=min_numeric tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_special tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=min_special tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_attribute_path=length tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_lower tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=keepers tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_resource_type=random_string @module=sdk.framework tf_attribute_path=keepers timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.804+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_upper tf_req_id=b95331a6-bbd3-addd-fb65-132d3c049c10 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:55.804+0100" 2023-11-22T12:07:55.806+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:55.821+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=12864 2023-11-22T12:07:55.826+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:55.833+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:55.852+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=15844 2023-11-22T12:07:55.855+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:55.855+0100 [INFO] backend/local: apply calling Plan 2023-11-22T12:07:55.855+0100 [DEBUG] Building and walking plan graph for NormalMode 2023-11-22T12:07:55.857+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "random_string.rnd (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.858+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example (expand)" references: [var.vm_count local.datacenter (expand) var.cpu_family local.image_name (expand) var.vm_state local.boot_cdrom (expand) var.vm_ram var.vm_prefix random_string.rnd (expand) var.vm_cores var.boot_volume_size random_string.rnd (expand) var.os_family var.os_family local.user_data_b64 (expand) var.boot_volume_type ionoscloud_lan.example-pvt (expand) var.vm_prefix random_string.rnd (expand) random_string.rnd (expand)] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:55.859+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example (expand)" references: [var.firewall_rules var.vm_count local.datacenter (expand) ionoscloud_server.example (expand) var.vm_count ionoscloud_nic.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example (expand) ionoscloud_nic.example (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom (expand)" references: [var.os_family var.dc_location var.vm_image] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "random_string.rnd (expand)" references: [var.vm_count] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example (expand)" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example (expand)" references: [var.vm_count ionoscloud_server.example (expand) ionoscloud_lan.example-pub (expand) local.datacenter (expand) ionoscloud_ipblock.example (expand) random_string.rnd (expand) var.firewall_aktive var.firewall_rules] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:07:55.860+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example (expand)" references: [var.volumes var.vm_count local.datacenter (expand) ionoscloud_server.example (expand) var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd (expand) var.vm_count] 2023-11-22T12:07:55.863+0100 [DEBUG] Starting graph walk: walkPlan 2023-11-22T12:07:55.869+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.869+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.876+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:07:55.881+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=14752 2023-11-22T12:07:55.881+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:07:55.903+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.902+0100" 2023-11-22T12:07:55.923+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.923+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:07:55.923+0100" 2023-11-22T12:07:55.935+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:55.936+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 @module=sdk.framework timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_id @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_id @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_integer @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.936+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_integer tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_password tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_password tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_pet @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_resource_type=random_pet tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_shuffle timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_shuffle tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.936+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_string tf_rpc=GetProviderSchema @module=sdk.framework timestamp="2023-11-22T12:07:55.937+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_resource_type=random_uuid tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework timestamp="2023-11-22T12:07:55.937+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_resource_type=random_uuid @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:55.937+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:55.937+0100" 2023-11-22T12:07:55.937+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=4eee2eb9-6def-d1e2-b274-1f896d8301ee tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 timestamp="2023-11-22T12:07:55.937+0100" 2023-11-22T12:07:55.938+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:07:55.941+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:07:55.947+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=19544 2023-11-22T12:07:55.947+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:07:55.970+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:55.969+0100" 2023-11-22T12:07:55.993+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:55.994+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10001 network=tcp timestamp="2023-11-22T12:07:55.992+0100" 2023-11-22T12:07:56.036+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e79197b5-f4b6-a083-fd8b-684e5b44f32d tf_rpc=Configure timestamp="2023-11-22T12:07:56.034+0100" 2023-11-22T12:07:56.036+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e79197b5-f4b6-a083-fd8b-684e5b44f32d tf_rpc=Configure @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:20 timestamp="2023-11-22T12:07:56.034+0100" 2023-11-22T12:07:56.036+0100 [DEBUG] ReferenceTransformer: "random_string.rnd[0]" references: [] random_string.rnd[0]: Refreshing state... [id=lw0n62] 2023-11-22T12:07:56.042+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Read: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=0a6763ea-99a9-a559-d689-27c5f0b4c530 @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_readresource.go:96 tf_resource_type=random_string tf_rpc=ReadResource timestamp="2023-11-22T12:07:56.041+0100" 2023-11-22T12:07:56.042+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Read: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_readresource.go:98 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ReadResource @module=sdk.framework tf_req_id=0a6763ea-99a9-a559-d689-27c5f0b4c530 timestamp="2023-11-22T12:07:56.041+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2023-11-22T12:07:56.048+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_rpc=ValidateResourceTypeConfig tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 timestamp="2023-11-22T12:07:56.048+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_rpc=ValidateResourceTypeConfig tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.048+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=length tf_resource_type=random_string @module=sdk.framework timestamp="2023-11-22T12:07:56.048+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: description="value must be at least 1" tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 @module=sdk.framework tf_attribute_path=length tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.049+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: description="value must be at least 1" tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 @module=sdk.framework tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.049+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 @module=sdk.framework tf_attribute_path=length timestamp="2023-11-22T12:07:56.049+0100" 2023-11-22T12:07:56.049+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_upper tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:56.049+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_numeric tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_special tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_attribute_path=min_special tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.050+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 @module=sdk.framework description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_resource_type=random_string tf_attribute_path=length tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=min_upper tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=keepers timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=keepers tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.050+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_attribute_path=min_special timestamp="2023-11-22T12:07:56.051+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=min_special timestamp="2023-11-22T12:07:56.051+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_lower tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_resource_type=random_string @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:07:56.051+0100" 2023-11-22T12:07:56.051+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=49dfaddb-c732-5fe0-16a9-4a5513aa3a48 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=min_lower tf_resource_type=random_string timestamp="2023-11-22T12:07:56.051+0100" 2023-11-22T12:07:56.053+0100 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" changed the config value, but that value is unused 2023-11-22T12:07:56.053+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.053+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.053+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.053+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.053+0100" 2023-11-22T12:07:56.054+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Setting terraformVersion to 1.6.1: timestamp="2023-11-22T12:07:56.054+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.054+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:07:56.054+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom[0]" references: [] 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_resource_type=random_string timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_special timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.055+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example[0]" references: [] 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.055+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_numeric tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange tf_attribute_path=min_numeric timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.056+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path=min_numeric tf_resource_type=random_string timestamp="2023-11-22T12:07:56.056+0100" data.ionoscloud_datacenter.example[0]: Reading... 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework description="Once set, the value of this attribute in state will not change." tf_attribute_path=id tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 timestamp="2023-11-22T12:07:56.056+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: description="Once set, the value of this attribute in state will not change." tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_attribute_path=id tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 @module=sdk.framework timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_resource_type=random_string timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.058+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:07:56.057+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_upper description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 timestamp="2023-11-22T12:07:56.058+0100" data.ionoscloud_image.cdrom[0]: Reading... 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_attribute_path=min_upper timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.058+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.059+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Map: tf_attribute_path=keepers tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1092 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Map: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1102 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=keepers timestamp="2023-11-22T12:07:56.059+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework tf_attribute_path=keepers tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=keepers tf_rpc=PlanResourceChange tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.060+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.061+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2023-11-22T12:07:56.060+0100" 2023-11-22T12:07:56.061+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_attribute_path=length tf_resource_type=random_string timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.061+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=length tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.061+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_attribute_path=length tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.061+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=special tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_resource_type=random_string @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 tf_resource_type=random_string tf_attribute_path=lower tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=lower timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework timestamp="2023-11-22T12:07:56.061+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange description="If the value of this attribute changes, Terraform will destroy and recreate the resource." timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.062+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_rpc=PlanResourceChange @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_lower tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @module=sdk.framework description="Ensures that number and numeric attributes are kept synchronised." tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 @module=sdk.framework description="Ensures that number and numeric attributes are kept synchronised." tf_attribute_path=number tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:56.062+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_attribute_path=number tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: @module=sdk.framework description="Replace on modification unless updating from empty string (\"\") to null." tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: description="Replace on modification unless updating from empty string (\"\") to null." tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 @module=sdk.framework tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 tf_attribute_path=result tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange description="Once set, the value of this attribute in state will not change." timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 description="Once set, the value of this attribute in state will not change." tf_attribute_path=result tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 description="Ensures that number and numeric attributes are kept synchronised." tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string @module=sdk.framework tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: description="Ensures that number and numeric attributes are kept synchronised." tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_attribute_path=numeric tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 @module=sdk.framework timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=numeric tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 tf_resource_type=random_string timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.063+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=31c21e61-b884-920b-1453-6a27748cd8d3 timestamp="2023-11-22T12:07:56.063+0100" 2023-11-22T12:07:56.066+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:56.091+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=14752 2023-11-22T12:07:56.097+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:56.353+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 268.2923ms for operation : ImagesGet: timestamp="2023-11-22T12:07:56.352+0100" 2023-11-22T12:07:56.353+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.352+0100" data.ionoscloud_image.cdrom[0]: Read complete after 0s [id=d66dbfec-73dc-11ee-b0e7-5a8dcfef2416] 2023-11-22T12:07:56.568+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 507.0923ms for operation : DatacentersGet: timestamp="2023-11-22T12:07:56.568+0100" 2023-11-22T12:07:56.568+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.568+0100" data.ionoscloud_datacenter.example[0]: Read complete after 1s [id=804031e8-d68e-46e1-8f3f-c4538a33aa47] 2023-11-22T12:07:56.572+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example[0]" references: [] 2023-11-22T12:07:56.572+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub" references: [] 2023-11-22T12:07:56.572+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt" references: [] ionoscloud_lan.example-pub: Refreshing state... [id=3] ionoscloud_lan.example-pvt: Refreshing state... [id=4] ionoscloud_ipblock.example[0]: Refreshing state... [id=fdd4a3f6-9caa-4eba-b3fb-cad0dba463b1] 2023-11-22T12:07:56.739+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 155.4709ms for operation : DatacentersLansFindById: timestamp="2023-11-22T12:07:56.739+0100" 2023-11-22T12:07:56.739+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.739+0100" 2023-11-22T12:07:56.739+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN 3 found: {Entities:0xc00000a110 Href:0xc0009132c0 Id:0xc000913290 Metadata:0xc000444100 Properties:0xc000518480 Type:0xc0009132a0}: timestamp="2023-11-22T12:07:56.739+0100" 2023-11-22T12:07:56.765+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 184.8769ms for operation : DatacentersLansFindById: timestamp="2023-11-22T12:07:56.763+0100" 2023-11-22T12:07:56.765+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.763+0100" 2023-11-22T12:07:56.765+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN 4 found: {Entities:0xc00000a4f8 Href:0xc0002860b0 Id:0xc000286080 Metadata:0xc0004447c0 Properties:0xc00028c840 Type:0xc000286090}: timestamp="2023-11-22T12:07:56.763+0100" 2023-11-22T12:07:56.771+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example[0]" references: [] ionoscloud_server.example[0]: Refreshing state... [id=a04d0138-9ac6-4cc9-b01a-1b6b903d06f6] 2023-11-22T12:07:56.819+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 235.9787ms for operation : IpblocksFindById: timestamp="2023-11-22T12:07:56.818+0100" 2023-11-22T12:07:56.819+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.818+0100" 2023-11-22T12:07:56.819+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: IPS: 85.215.147.128: timestamp="2023-11-22T12:07:56.818+0100" 2023-11-22T12:07:56.823+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_ipblock.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .ip_consumers: block count in plan (1) disagrees with count in config (0) 2023-11-22T12:07:56.972+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 182.5982ms for operation : DatacentersServersFindById: timestamp="2023-11-22T12:07:56.972+0100" 2023-11-22T12:07:56.972+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:56.972+0100" 2023-11-22T12:07:57.149+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 173.8395ms for operation : DatacentersServersNicsFindById: timestamp="2023-11-22T12:07:57.149+0100" 2023-11-22T12:07:57.149+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.149+0100" 2023-11-22T12:07:57.341+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 190.2326ms for operation : DatacentersServersLabelsGet: timestamp="2023-11-22T12:07:57.340+0100" 2023-11-22T12:07:57.341+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.340+0100" 2023-11-22T12:07:57.382+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_server.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .nic[0].firewall_active: planned value cty.False for a non-computed attribute - .volume[0].image_password: planned value cty.StringVal("") for a non-computed attribute - .volume[0].ssh_key_path: planned value cty.ListValEmpty(cty.String) for a non-computed attribute 2023-11-22T12:07:57.386+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example[0]" references: [] 2023-11-22T12:07:57.388+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example[0]" references: [] ionoscloud_nic.example[0]: Refreshing state... [id=b8b24fa0-9643-46af-94e8-b154180daa16] ionoscloud_volume.example[0]: Refreshing state... [id=c9bd1446-546b-4409-a30e-3ac89e6898ef] 2023-11-22T12:07:57.588+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 185.431ms for operation : DatacentersServersNicsFindById: timestamp="2023-11-22T12:07:57.587+0100" 2023-11-22T12:07:57.588+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.587+0100" 2023-11-22T12:07:57.588+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN ON NIC: 824633976092: timestamp="2023-11-22T12:07:57.587+0100" 2023-11-22T12:07:57.588+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 169.6216ms for operation : DatacentersVolumesFindById: timestamp="2023-11-22T12:07:57.588+0100" 2023-11-22T12:07:57.588+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.588+0100" 2023-11-22T12:07:57.607+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example[0]" references: [] 2023-11-22T12:07:57.607+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example[1]" references: [] ionoscloud_firewall.example[1]: Refreshing state... [id=71b332e6-6068-4675-8d74-26c5c45669a5] ionoscloud_firewall.example[0]: Refreshing state... [id=df0feecf-0740-410d-8343-91e2fb559c0f] 2023-11-22T12:07:57.770+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 178.6362ms for operation : DatacentersServersVolumesFindById: timestamp="2023-11-22T12:07:57.770+0100" 2023-11-22T12:07:57.772+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.772+0100" 2023-11-22T12:07:57.774+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 155.8515ms for operation : DatacentersServersNicsFirewallrulesFindById: timestamp="2023-11-22T12:07:57.773+0100" 2023-11-22T12:07:57.774+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.773+0100" 2023-11-22T12:07:57.791+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_firewall.example[1], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .source_ip: planned value cty.NullVal(cty.String) does not match config value cty.StringVal("") 2023-11-22T12:07:57.795+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 169.4009ms for operation : DatacentersServersNicsFirewallrulesFindById: timestamp="2023-11-22T12:07:57.791+0100" 2023-11-22T12:07:57.795+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:57.791+0100" 2023-11-22T12:07:57.801+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_firewall.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .source_ip: planned value cty.NullVal(cty.String) does not match config value cty.StringVal("") 2023-11-22T12:07:57.803+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:57.827+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=19544 2023-11-22T12:07:57.835+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:57.837+0100 [DEBUG] building apply graph to check for errors 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example[0]" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "random_string.rnd (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.839+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.840+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:07:57.840+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:07:57.840+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example (expand)" references: [var.volumes var.vm_count local.datacenter (expand) var.volumes var.vm_count var.volumes random_string.rnd (expand) var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes ionoscloud_server.example (expand) ionoscloud_server.example[0] var.vm_count] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example (expand)" references: [var.vm_count local.boot_cdrom (expand) local.datacenter (expand) var.vm_prefix random_string.rnd (expand) var.vm_ram var.cpu_family local.image_name (expand) var.vm_state var.vm_cores local.user_data_b64 (expand) var.boot_volume_type var.boot_volume_size var.os_family var.os_family random_string.rnd (expand) ionoscloud_lan.example-pvt (expand) var.vm_prefix random_string.rnd (expand) random_string.rnd (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example[0]" references: [var.vm_count var.vm_prefix random_string.rnd (expand) var.vm_ram var.cpu_family local.image_name (expand) var.vm_state var.vm_cores local.boot_cdrom (expand) local.datacenter (expand) var.os_family var.os_family random_string.rnd (expand) var.boot_volume_size local.user_data_b64 (expand) var.boot_volume_type ionoscloud_lan.example-pvt (expand) var.vm_prefix random_string.rnd (expand) random_string.rnd (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "random_string.rnd (expand)" references: [var.vm_count] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example (expand)" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom (expand)" references: [var.os_family var.dc_location var.vm_image] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example (expand)" references: [var.vm_count ionoscloud_lan.example-pub (expand) var.firewall_aktive var.firewall_rules random_string.rnd (expand) ionoscloud_ipblock.example (expand) local.datacenter (expand) ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example (expand)" references: [var.firewall_rules var.vm_count local.datacenter (expand) var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules ionoscloud_nic.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.vm_count ionoscloud_server.example (expand) ionoscloud_server.example[0] var.vm_count] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example (expand) ionoscloud_nic.example (expand)] 2023-11-22T12:07:57.841+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: ionoscloud_firewall.example (expand) is no longer needed, removing 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: ionoscloud_volume.example (expand) is no longer needed, removing 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: ionoscloud_nic.example (expand) is no longer needed, removing 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: ionoscloud_ipblock.example (expand) is no longer needed, removing 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: local.location (expand) is no longer needed, removing 2023-11-22T12:07:57.843+0100 [DEBUG] pruneUnusedNodes: ionoscloud_lan.example-pub (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: ~ update in-place Terraform will perform the following actions: # ionoscloud_server.example[0] will be updated in-place ~ resource "ionoscloud_server" "example" { id = "a04d0138-9ac6-4cc9-b01a-1b6b903d06f6" name = "vm-tf-demo-lw0n62" # (12 unchanged attributes hidden) ~ volume { name = "vol-system-lw0n62" ~ size = 150 -> 256 # (13 unchanged attributes hidden) } # (4 unchanged blocks hidden) } Plan: 0 to add, 1 to change, 0 to destroy. 2023-11-22T12:07:57.866+0100 [INFO] backend/local: apply calling Apply 2023-11-22T12:07:57.866+0100 [DEBUG] Building and walking apply graph for NormalMode plan 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "random_string.rnd (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example[0]" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.868+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example (expand)" references: [var.firewall_rules var.vm_count ionoscloud_server.example (expand) ionoscloud_server.example[0] var.vm_count local.datacenter (expand) var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules var.vm_count ionoscloud_nic.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules] 2023-11-22T12:07:57.869+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example (expand)" references: [var.vm_count var.vm_prefix random_string.rnd (expand) var.vm_ram var.cpu_family local.image_name (expand) var.vm_cores var.vm_state local.boot_cdrom (expand) local.datacenter (expand) var.os_family var.os_family random_string.rnd (expand) var.boot_volume_size local.user_data_b64 (expand) var.boot_volume_type var.vm_prefix random_string.rnd (expand) ionoscloud_lan.example-pvt (expand) random_string.rnd (expand)] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom (expand)" references: [var.os_family var.dc_location var.vm_image] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "random_string.rnd (expand)" references: [var.vm_count] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt (expand)" references: [local.datacenter (expand) var.vm_prefix] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example (expand) ionoscloud_nic.example (expand)] 2023-11-22T12:07:57.870+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example[0]" references: [var.vm_count var.vm_ram var.cpu_family local.image_name (expand) var.vm_state var.vm_cores local.boot_cdrom (expand) local.datacenter (expand) var.vm_prefix random_string.rnd (expand) var.boot_volume_type var.boot_volume_size var.os_family var.os_family random_string.rnd (expand) local.user_data_b64 (expand) ionoscloud_lan.example-pvt (expand) var.vm_prefix random_string.rnd (expand) random_string.rnd (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example (expand)" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example (expand)" references: [var.volumes var.vm_count local.datacenter (expand) var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd (expand) var.vm_count var.volumes var.vm_count var.volumes ionoscloud_server.example (expand) ionoscloud_server.example[0] var.vm_count] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example (expand)" references: [var.vm_count ionoscloud_ipblock.example (expand) ionoscloud_lan.example-pub (expand) ionoscloud_server.example (expand) ionoscloud_server.example[0] var.firewall_aktive var.firewall_rules local.datacenter (expand) random_string.rnd (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom (expand)] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example (expand) ionoscloud_server.example[0]] 2023-11-22T12:07:57.871+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: ionoscloud_firewall.example (expand) is no longer needed, removing 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: ionoscloud_volume.example (expand) is no longer needed, removing 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: ionoscloud_nic.example (expand) is no longer needed, removing 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: ionoscloud_lan.example-pub (expand) is no longer needed, removing 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: ionoscloud_ipblock.example (expand) is no longer needed, removing 2023-11-22T12:07:57.873+0100 [DEBUG] pruneUnusedNodes: local.location (expand) is no longer needed, removing 2023-11-22T12:07:57.875+0100 [DEBUG] Starting graph walk: walkApply 2023-11-22T12:07:57.876+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:57.878+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:57.888+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:07:57.892+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27516 2023-11-22T12:07:57.892+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:07:57.937+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:57.935+0100" 2023-11-22T12:07:57.981+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:07:57.981+0100" 2023-11-22T12:07:57.982+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:58.010+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:07:58.014+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:07:58.023+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:07:58.030+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=14484 2023-11-22T12:07:58.030+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:07:58.110+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:07:58.107+0100" 2023-11-22T12:07:58.148+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:07:58.150+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10001 network=tcp timestamp="2023-11-22T12:07:58.148+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 @module=sdk.framework timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.165+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework timestamp="2023-11-22T12:07:58.165+0100" 2023-11-22T12:07:58.166+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_id tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.166+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_id tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.166+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_resource_type=random_integer tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_integer tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_password tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_pet tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_pet tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_shuffle @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 timestamp="2023-11-22T12:07:58.166+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_shuffle timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" changed the config value, but that value is unused 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_string timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_string tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_uuid timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_rpc=GetProviderSchema @module=sdk.framework tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_resource_type=random_uuid @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.167+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f1c40be0-ef69-183d-1a66-ba6eeafaf628 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 timestamp="2023-11-22T12:07:58.167+0100" 2023-11-22T12:07:58.168+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Setting terraformVersion to 1.6.1: timestamp="2023-11-22T12:07:58.168+0100" 2023-11-22T12:07:58.169+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:07:58.174+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Configure: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=10cfda9f-5afd-3c81-226e-b1c4350d4018 tf_rpc=Configure @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:12 @module=sdk.framework timestamp="2023-11-22T12:07:58.174+0100" 2023-11-22T12:07:58.175+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=10cfda9f-5afd-3c81-226e-b1c4350d4018 tf_rpc=Configure @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:20 timestamp="2023-11-22T12:07:58.174+0100" 2023-11-22T12:07:58.177+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:07:58.196+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=14484 2023-11-22T12:07:58.203+0100 [DEBUG] provider: plugin exited 2023-11-22T12:07:58.227+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_server.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .nic[0].firewall_active: planned value cty.False for a non-computed attribute - .volume[0].ssh_key_path: planned value cty.ListValEmpty(cty.String) for a non-computed attribute - .volume[0].image_password: planned value cty.StringVal("") for a non-computed attribute ionoscloud_server.example[0]: Modifying... [id=a04d0138-9ac6-4cc9-b01a-1b6b903d06f6] 2023-11-22T12:07:58.229+0100 [INFO] Starting apply for ionoscloud_server.example[0] 2023-11-22T12:07:58.231+0100 [DEBUG] ionoscloud_server.example[0]: applying the planned Update change 2023-11-22T12:07:58.434+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 195.964ms for operation : DatacentersServersFindById: timestamp="2023-11-22T12:07:58.434+0100" 2023-11-22T12:07:58.434+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:58.434+0100" 2023-11-22T12:07:58.922+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 481.6013ms for operation : DatacentersServersPatch: timestamp="2023-11-22T12:07:58.921+0100" 2023-11-22T12:07:58.922+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 202: timestamp="2023-11-22T12:07:58.921+0100" 2023-11-22T12:07:58.922+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Waiting for state to become: [DONE]: timestamp="2023-11-22T12:07:58.921+0100" 2023-11-22T12:07:58.922+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: Checking PATH https://api.ionos.com/cloudapi/v6/requests/86262a07-5811-47b3-aab3-4cdef9619e36/status: timestamp="2023-11-22T12:07:58.921+0100" 2023-11-22T12:07:59.100+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 178.7638ms for operation : GetRequestStatus: timestamp="2023-11-22T12:07:59.100+0100" 2023-11-22T12:07:59.100+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:07:59.100+0100" 2023-11-22T12:08:04.104+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: Checking PATH https://api.ionos.com/cloudapi/v6/requests/86262a07-5811-47b3-aab3-4cdef9619e36/status: timestamp="2023-11-22T12:08:04.103+0100" 2023-11-22T12:08:04.355+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 246.4917ms for operation : GetRequestStatus: timestamp="2023-11-22T12:08:04.354+0100" 2023-11-22T12:08:04.355+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:08:04.354+0100" 2023-11-22T12:08:04.616+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 253.9457ms for operation : DatacentersServersVolumesFindById: timestamp="2023-11-22T12:08:04.616+0100" 2023-11-22T12:08:04.616+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:08:04.616+0100" 2023-11-22T12:08:04.820+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 203.9071ms for operation : DatacentersVolumesPatch: timestamp="2023-11-22T12:08:04.820+0100" 2023-11-22T12:08:04.820+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 405: timestamp="2023-11-22T12:08:04.820+0100" 2023-11-22T12:08:04.821+0100 [ERROR] provider.terraform-provider-ionoscloud_v6.4.10.exe: Response contains error diagnostic: @module=sdk.proto diagnostic_summary= | error patching volume (a04d0138-9ac6-4cc9-b01a-1b6b903d06f6) (405 Method Not Allowed { | "httpStatus" : 405, | "messages" : [ { | "errorCode" : "307", | "message" : "Http method 'PATCH' not allowed. Expected one of [POST,GET,OPTIONS]" | } ] | } | ) tf_provider_addr=provider tf_resource_type=ionoscloud_server diagnostic_severity=ERROR diagnostic_detail="" tf_proto_version=5.3 tf_req_id=dbb251da-59b6-b768-bda1-e40bd2894b90 tf_rpc=ApplyResourceChange @caller=github.com/hashicorp/terraform-plugin-go@v0.18.0/tfprotov5/internal/diag/diagnostics.go:58 timestamp="2023-11-22T12:08:04.821+0100" 2023-11-22T12:08:04.838+0100 [DEBUG] State storage *statemgr.Filesystem declined to persist a state snapshot 2023-11-22T12:08:04.839+0100 [ERROR] vertex "ionoscloud_server.example[0]" error: error patching volume (a04d0138-9ac6-4cc9-b01a-1b6b903d06f6) (405 Method Not Allowed { "httpStatus" : 405, "messages" : [ { "errorCode" : "307", "message" : "Http method 'PATCH' not allowed. Expected one of [POST,GET,OPTIONS]" } ] } ) Error: error patching volume (a04d0138-9ac6-4cc9-b01a-1b6b903d06f6) (405 Method Not Allowed { "httpStatus" : 405, "messages" : [ { "errorCode" : "307", "message" : "Http method 'PATCH' not allowed. Expected one of [POST,GET,OPTIONS]" } ] } ) with ionoscloud_server.example[0], on main.tf line 92, in resource "ionoscloud_server" "example": 92: resource "ionoscloud_server" "example" { 2023-11-22T12:08:04.854+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:08:04.872+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27516 2023-11-22T12:08:04.873+0100 [DEBUG] provider: plugin exited ```

What is even more strange is that if you run it a second time it says that everything is up to date. This is wrong - drive has still the old size. I thing the provider has already update the state before it actually did something (which is a bad idea) and it doesent refresh the deployed state properly either.

hegerdes commented 9 months ago

Second comment because two logs seem to be to much for GH to handle:

Second Run Log ``` 2023-11-22T12:14:10.372+0100 [INFO] Terraform version: 1.6.1 2023-11-22T12:14:10.372+0100 [DEBUG] using github.com/hashicorp/go-tfe v1.34.0 2023-11-22T12:14:10.372+0100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.18.1 2023-11-22T12:14:10.372+0100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 2023-11-22T12:14:10.372+0100 [DEBUG] using github.com/zclconf/go-cty v1.14.1 2023-11-22T12:14:10.372+0100 [INFO] Go runtime version: go1.21.1 2023-11-22T12:14:10.373+0100 [INFO] CLI args: []string{"C:\\Users\\HenrikGerdes\\Tools\\terraform.exe", "apply", "-var-file", "windows.tfvars.json", "-auto-approve", "-no-color"} 2023-11-22T12:14:10.378+0100 [DEBUG] Attempting to open CLI config file: C:\Users\HenrikGerdes\AppData\Roaming\terraform.rc 2023-11-22T12:14:10.384+0100 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. 2023-11-22T12:14:10.384+0100 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins 2023-11-22T12:14:10.384+0100 [DEBUG] ignoring non-existing provider search directory C:\Users\HenrikGerdes\AppData\Roaming\terraform.d\plugins 2023-11-22T12:14:10.384+0100 [DEBUG] ignoring non-existing provider search directory C:\Users\HenrikGerdes\AppData\Roaming\HashiCorp\Terraform\plugins 2023-11-22T12:14:10.384+0100 [INFO] CLI command args: []string{"apply", "-var-file", "windows.tfvars.json", "-auto-approve", "-no-color"} 2023-11-22T12:14:10.394+0100 [DEBUG] New state was assigned lineage "11388de0-f806-1734-dc55-e4d7c844f3b6" 2023-11-22T12:14:10.456+0100 [DEBUG] checking for provisioner in "." 2023-11-22T12:14:10.456+0100 [DEBUG] checking for provisioner in "C:\\Users\\HenrikGerdes\\Tools" 2023-11-22T12:14:10.460+0100 [INFO] backend/local: starting Apply operation 2023-11-22T12:14:13.172+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.172+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.190+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:14:13.199+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=28000 2023-11-22T12:14:13.199+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:14:13.238+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.237+0100" 2023-11-22T12:14:13.261+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:14:13.260+0100" 2023-11-22T12:14:13.262+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.281+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 timestamp="2023-11-22T12:14:13.281+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_id @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_resource_type=random_id tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_integer timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_integer tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_resource_type=random_password tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_resource_type=random_password timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.282+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_resource_type=random_pet tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_resource_type=random_pet tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_resource_type=random_shuffle tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_resource_type=random_shuffle tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_uuid tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_uuid @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.283+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=1b49c661-8f1f-5dfe-edee-9b8f62fd5831 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 @module=sdk.framework timestamp="2023-11-22T12:14:13.282+0100" 2023-11-22T12:14:13.287+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:14:13.289+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:13.314+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=28000 2023-11-22T12:14:13.319+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:13.321+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.324+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.332+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:14:13.339+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27560 2023-11-22T12:14:13.339+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:14:13.378+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.376+0100" 2023-11-22T12:14:13.413+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:14:13.413+0100" 2023-11-22T12:14:13.413+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.476+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:13.495+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27560 2023-11-22T12:14:13.503+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:13.503+0100 [DEBUG] Building and walking validate graph 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "random_string.rnd" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.504+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.505+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.505+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.505+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "random_string.rnd" references: [var.vm_count] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example" references: [var.vm_count var.vm_prefix random_string.rnd var.vm_state local.image_name (expand) local.boot_cdrom (expand) var.cpu_family local.datacenter (expand) var.vm_cores var.vm_ram random_string.rnd var.boot_volume_size var.os_family var.os_family local.user_data_b64 (expand) var.boot_volume_type ionoscloud_lan.example-pvt var.vm_prefix random_string.rnd random_string.rnd] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example" references: [var.vm_count var.firewall_aktive var.firewall_rules local.datacenter (expand) ionoscloud_ipblock.example ionoscloud_lan.example-pub random_string.rnd ionoscloud_server.example] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:14:13.506+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom" references: [var.os_family var.vm_image var.dc_location] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example ionoscloud_datacenter.example] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example ionoscloud_datacenter.example] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example ionoscloud_nic.example] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example" references: [var.volumes var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd var.vm_count local.datacenter (expand) ionoscloud_server.example var.vm_count var.volumes var.vm_count var.volumes] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example" references: [var.firewall_rules var.vm_count ionoscloud_server.example var.vm_count local.datacenter (expand) var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules ionoscloud_nic.example var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules] 2023-11-22T12:14:13.507+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:14:13.509+0100 [DEBUG] Starting graph walk: walkValidate 2023-11-22T12:14:13.511+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.511+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.518+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:14:13.523+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=16020 2023-11-22T12:14:13.523+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:14:13.549+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.548+0100" 2023-11-22T12:14:13.573+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.573+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:14:13.572+0100" 2023-11-22T12:14:13.590+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.591+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_pet tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.591+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_resource_type=random_pet tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_shuffle tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.591+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_shuffle tf_rpc=GetProviderSchema @module=sdk.framework tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_string tf_rpc=GetProviderSchema @module=sdk.framework timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 @module=sdk.framework tf_resource_type=random_uuid tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.592+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema @module=sdk.framework tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_uuid timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.596+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_resource_type=random_id tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.592+0100" 2023-11-22T12:14:13.596+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_id tf_rpc=GetProviderSchema @module=sdk.framework tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 timestamp="2023-11-22T12:14:13.594+0100" 2023-11-22T12:14:13.596+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_integer tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 timestamp="2023-11-22T12:14:13.594+0100" 2023-11-22T12:14:13.596+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_integer timestamp="2023-11-22T12:14:13.594+0100" 2023-11-22T12:14:13.596+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_resource_type=random_password timestamp="2023-11-22T12:14:13.594+0100" 2023-11-22T12:14:13.597+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_resource_type=random_password @module=sdk.framework tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.594+0100" 2023-11-22T12:14:13.597+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 timestamp="2023-11-22T12:14:13.595+0100" 2023-11-22T12:14:13.597+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=35b72a06-3df9-7c8d-aa38-cf06806bf755 tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 @module=sdk.framework timestamp="2023-11-22T12:14:13.595+0100" 2023-11-22T12:14:13.598+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:14:13.598+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:14:13.604+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=12932 2023-11-22T12:14:13.604+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:14:13.628+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.627+0100" 2023-11-22T12:14:13.651+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.651+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10001 network=tcp timestamp="2023-11-22T12:14:13.651+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_upper tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=keepers timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_attribute_path=keepers timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_attribute_path=length timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=length tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 tf_attribute_path=length description="value must be at least 1" tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: @module=sdk.framework description="value must be at least 1" tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_attribute_path=min_upper timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=min_upper tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @module=sdk.framework tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_numeric tf_resource_type=random_string tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.666+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig tf_attribute_path=min_numeric tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2023-11-22T12:14:13.666+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_special @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_attribute_path=min_special tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: @module=sdk.framework description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 tf_attribute_path=length tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_numeric timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_lower tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig tf_attribute_path=min_lower tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_special tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.667+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=740085ab-b2f5-a973-9f9e-afde838febcf tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2023-11-22T12:14:13.667+0100" 2023-11-22T12:14:13.668+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:13.681+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=16020 2023-11-22T12:14:13.688+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:13.705+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:13.720+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=12932 2023-11-22T12:14:13.721+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:13.722+0100 [INFO] backend/local: apply calling Plan 2023-11-22T12:14:13.722+0100 [DEBUG] Building and walking plan graph for NormalMode 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "random_string.rnd (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.723+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "random_string.rnd (expand)" references: [var.vm_count] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example (expand) ionoscloud_nic.example (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example (expand)" references: [var.volumes var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd (expand) var.vm_count var.volumes var.vm_count var.volumes local.datacenter (expand) ionoscloud_server.example (expand) var.vm_count] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example (expand)" references: [var.vm_count local.location (expand) var.vm_prefix random_string.rnd (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom (expand)" references: [var.os_family var.vm_image var.dc_location] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:14:13.724+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example (expand)" references: [var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules ionoscloud_nic.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules local.datacenter (expand) var.firewall_rules var.vm_count var.firewall_rules var.vm_count ionoscloud_server.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example (expand)" references: [var.vm_count var.vm_cores local.image_name (expand) var.cpu_family var.vm_ram local.boot_cdrom (expand) local.datacenter (expand) var.vm_prefix random_string.rnd (expand) var.vm_state var.boot_volume_type var.boot_volume_size local.user_data_b64 (expand) random_string.rnd (expand) var.os_family var.os_family ionoscloud_lan.example-pvt (expand) var.vm_prefix random_string.rnd (expand) random_string.rnd (expand)] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example (expand)" references: [var.vm_count var.firewall_aktive var.firewall_rules ionoscloud_ipblock.example (expand) ionoscloud_server.example (expand) ionoscloud_lan.example-pub (expand) random_string.rnd (expand) local.datacenter (expand)] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:14:13.725+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:14:13.728+0100 [DEBUG] Starting graph walk: walkPlan 2023-11-22T12:14:13.729+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.730+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.735+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe args=[".terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe"] 2023-11-22T12:14:13.739+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27532 2023-11-22T12:14:13.739+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe 2023-11-22T12:14:13.762+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.761+0100" 2023-11-22T12:14:13.784+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.784+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: plugin address: address=127.0.0.1:10000 network=tcp timestamp="2023-11-22T12:14:13.783+0100" 2023-11-22T12:14:13.795+0100 [DEBUG] created provider logger: level=debug 2023-11-22T12:14:13.796+0100 [INFO] provider: configuring client automatic mTLS 2023-11-22T12:14:13.800+0100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe args=[".terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe"] 2023-11-22T12:14:13.806+0100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=23084 2023-11-22T12:14:13.806+0100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe 2023-11-22T12:14:13.830+0100 [INFO] provider.terraform-provider-random_v3.5.1_x5.exe: configuring server automatic mTLS: timestamp="2023-11-22T12:14:13.830+0100" 2023-11-22T12:14:13.849+0100 [DEBUG] provider: using plugin: version=5 2023-11-22T12:14:13.849+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: plugin address: network=tcp address=127.0.0.1:10001 timestamp="2023-11-22T12:14:13.849+0100" 2023-11-22T12:14:13.863+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Metadata: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:36 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.863+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_getproviderschema.go:38 timestamp="2023-11-22T12:14:13.863+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Schema: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:272 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.863+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Schema: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:274 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Resources: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:349 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Resources: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:351 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_resource_type=random_pet tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_resource_type=random_pet timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_shuffle timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_shuffle tf_rpc=GetProviderSchema tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_rpc=GetProviderSchema @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_uuid @module=sdk.framework tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_resource_type=random_uuid timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_id tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 @module=sdk.framework tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_id @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_resource_type=random_integer @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_integer tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Schema: @module=sdk.framework tf_rpc=GetProviderSchema tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:433 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Schema: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_password @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:435 @module=sdk.framework tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.864+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider DataSources: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:152 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.865+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=f606f5e4-1b10-cb27-78b8-f166c877462c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server.go:154 timestamp="2023-11-22T12:14:13.864+0100" 2023-11-22T12:14:13.866+0100 [WARN] ValidateProviderConfig from "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" changed the config value, but that value is unused 2023-11-22T12:14:13.867+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Setting terraformVersion to 1.6.1: timestamp="2023-11-22T12:14:13.866+0100" 2023-11-22T12:14:13.867+0100 [DEBUG] No provider meta schema returned 2023-11-22T12:14:13.867+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example[0]" references: [] 2023-11-22T12:14:13.868+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom[0]" references: [] 2023-11-22T12:14:13.871+0100 [DEBUG] ReferenceTransformer: "random_string.rnd[0]" references: [] 2023-11-22T12:14:13.872+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Provider Configure: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e02935d1-5cfa-fe6d-d5f8-ee799827595b tf_rpc=Configure @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:12 timestamp="2023-11-22T12:14:13.870+0100" 2023-11-22T12:14:13.872+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Provider Configure: tf_rpc=Configure @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_configureprovider.go:20 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=e02935d1-5cfa-fe6d-d5f8-ee799827595b timestamp="2023-11-22T12:14:13.870+0100" data.ionoscloud_image.cdrom[0]: Reading... data.ionoscloud_datacenter.example[0]: Reading... random_string.rnd[0]: Refreshing state... [id=lw0n62] 2023-11-22T12:14:13.877+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Resource Read: tf_resource_type=random_string tf_rpc=ReadResource @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_readresource.go:96 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=71fb28db-c863-134f-fa34-72051b64ad87 timestamp="2023-11-22T12:14:13.877+0100" 2023-11-22T12:14:13.877+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Resource Read: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ReadResource @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/server_readresource.go:98 tf_req_id=71fb28db-c863-134f-fa34-72051b64ad87 timestamp="2023-11-22T12:14:13.877+0100" 2023-11-22T12:14:13.878+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_attribute_path=length tf_rpc=ValidateResourceTypeConfig tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.878+0100" 2023-11-22T12:14:13.878+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=length tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string @module=sdk.framework timestamp="2023-11-22T12:14:13.878+0100" 2023-11-22T12:14:13.878+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_rpc=ValidateResourceTypeConfig @module=sdk.framework description="value must be at least 1" tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 timestamp="2023-11-22T12:14:13.878+0100" 2023-11-22T12:14:13.878+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: @module=sdk.framework tf_attribute_path=length tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 description="value must be at least 1" tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.878+0100" 2023-11-22T12:14:13.879+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined validator.Int64: tf_resource_type=random_string tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:314 @module=sdk.framework timestamp="2023-11-22T12:14:13.878+0100" 2023-11-22T12:14:13.879+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_upper tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.879+0100" 2023-11-22T12:14:13.879+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_upper tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.879+0100" 2023-11-22T12:14:13.879+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 @module=sdk.framework tf_attribute_path=min_lower tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.879+0100" 2023-11-22T12:14:13.879+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.879+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_numeric tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.879+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_numeric tf_resource_type=random_string @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=min_special timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_attribute_path=min_special timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined validator.Int64: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_validation.go:324 @module=sdk.framework description="value must be at least sum of min_upper + min_lower + min_numeric + min_special" tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_lower tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=keepers tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=keepers tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_attribute_path=min_special tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_special tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 tf_rpc=ValidateResourceTypeConfig tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.880+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_resource_type=random_string tf_rpc=ValidateResourceTypeConfig @module=sdk.framework tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=77fe3650-75ad-1a22-99dd-9ee1124a9e50 timestamp="2023-11-22T12:14:13.880+0100" 2023-11-22T12:14:13.881+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.881+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.881+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange tf_resource_type=random_string timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_attribute_path=min_numeric tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=min_numeric tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.882+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_resource_type=random_string @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=special tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=special tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: tf_attribute_path=id tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 @module=sdk.framework description="Once set, the value of this attribute in state will not change." tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 description="Once set, the value of this attribute in state will not change." tf_attribute_path=id tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.882+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_resource_type=random_string @module=sdk.framework tf_attribute_path=min_lower tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_resource_type=random_string tf_rpc=PlanResourceChange description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 @module=sdk.framework timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_attribute_path=min_lower timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=min_lower tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 tf_attribute_path=override_special tf_resource_type=random_string description="Replace on modification unless updating from empty string (\"\") to null." timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: tf_resource_type=random_string tf_rpc=PlanResourceChange description="Replace on modification unless updating from empty string (\"\") to null." tf_attribute_path=override_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 @module=sdk.framework timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Map: @module=sdk.framework tf_attribute_path=keepers tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1092 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Map: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=keepers tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1102 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_attribute_path=keepers @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_attribute_path=keepers tf_resource_type=random_string tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.883+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 tf_attribute_path=length @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 tf_rpc=PlanResourceChange @module=sdk.framework tf_resource_type=random_string timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 @module=sdk.framework tf_rpc=PlanResourceChange tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.883+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_attribute_path=length tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=upper tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 tf_attribute_path=upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework description="Ensures that number and numeric attributes are kept synchronised." timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework description="Ensures that number and numeric attributes are kept synchronised." tf_attribute_path=numeric timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework tf_attribute_path=numeric tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=numeric tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=lower tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=lower tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_rpc=PlanResourceChange tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_special tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_attribute_path=min_special tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.884+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_attribute_path=min_special tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.String: tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string description="Once set, the value of this attribute in state will not change." tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1632 @module=sdk.framework tf_attribute_path=result timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.String: description="Once set, the value of this attribute in state will not change." tf_attribute_path=result tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:1642 tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 description="Ensures that number and numeric attributes are kept synchronised." tf_attribute_path=number tf_resource_type=random_string timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 description="Ensures that number and numeric attributes are kept synchronised." tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Bool: description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=number tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:552 @module=sdk.framework tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Bool: tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:562 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=number timestamp="2023-11-22T12:14:13.884+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange @module=sdk.framework timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.886+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:78 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.887+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_value.go:80 @module=sdk.framework tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 timestamp="2023-11-22T12:14:13.886+0100" 2023-11-22T12:14:13.887+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined planmodifier.Int64: tf_provider_addr=registry.terraform.io/hashicorp/random @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_attribute_path=min_upper tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:822 timestamp="2023-11-22T12:14:13.887+0100" 2023-11-22T12:14:13.887+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined planmodifier.Int64: tf_attribute_path=min_upper tf_provider_addr=registry.terraform.io/hashicorp/random tf_rpc=PlanResourceChange @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwserver/attribute_plan_modification.go:832 @module=sdk.framework description="If the value of this attribute changes, Terraform will destroy and recreate the resource." tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string timestamp="2023-11-22T12:14:13.887+0100" 2023-11-22T12:14:13.887+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/random @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:71 tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_resource_type=random_string tf_rpc=PlanResourceChange @module=sdk.framework tf_attribute_path=min_upper timestamp="2023-11-22T12:14:13.887+0100" 2023-11-22T12:14:13.887+0100 [DEBUG] provider.terraform-provider-random_v3.5.1_x5.exe: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.2.0/internal/fwschemadata/data_set_at_path.go:73 @module=sdk.framework tf_attribute_path=min_upper tf_resource_type=random_string tf_provider_addr=registry.terraform.io/hashicorp/random tf_req_id=ea61af5e-da21-ca7d-dbb1-7d8ced4222b1 tf_rpc=PlanResourceChange timestamp="2023-11-22T12:14:13.887+0100" 2023-11-22T12:14:13.889+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:13.905+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.5.1/windows_amd64/terraform-provider-random_v3.5.1_x5.exe pid=23084 2023-11-22T12:14:13.910+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:14.544+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 644.5164ms for operation : ImagesGet: timestamp="2023-11-22T12:14:14.538+0100" 2023-11-22T12:14:14.544+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:14.538+0100" data.ionoscloud_image.cdrom[0]: Read complete after 1s [id=d66dbfec-73dc-11ee-b0e7-5a8dcfef2416] 2023-11-22T12:14:14.647+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 767.8216ms for operation : DatacentersGet: timestamp="2023-11-22T12:14:14.647+0100" 2023-11-22T12:14:14.648+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:14.647+0100" data.ionoscloud_datacenter.example[0]: Read complete after 1s [id=804031e8-d68e-46e1-8f3f-c4538a33aa47] 2023-11-22T12:14:14.651+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub" references: [] 2023-11-22T12:14:14.651+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt" references: [] 2023-11-22T12:14:14.652+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example[0]" references: [] ionoscloud_lan.example-pvt: Refreshing state... [id=4] ionoscloud_lan.example-pub: Refreshing state... [id=3] ionoscloud_ipblock.example[0]: Refreshing state... [id=fdd4a3f6-9caa-4eba-b3fb-cad0dba463b1] 2023-11-22T12:14:14.826+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 170.5051ms for operation : DatacentersLansFindById: timestamp="2023-11-22T12:14:14.825+0100" 2023-11-22T12:14:14.826+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:14.825+0100" 2023-11-22T12:14:14.826+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN 3 found: {Entities:0xc00014ac40 Href:0xc00011ad80 Id:0xc00011ad50 Metadata:0xc00061c780 Properties:0xc000080000 Type:0xc00011ad60}: timestamp="2023-11-22T12:14:14.825+0100" 2023-11-22T12:14:14.828+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 171.4952ms for operation : DatacentersLansFindById: timestamp="2023-11-22T12:14:14.826+0100" 2023-11-22T12:14:14.828+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:14.826+0100" 2023-11-22T12:14:14.828+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN 4 found: {Entities:0xc00014ae48 Href:0xc000231620 Id:0xc0002315f0 Metadata:0xc00061cac0 Properties:0xc000080d20 Type:0xc000231600}: timestamp="2023-11-22T12:14:14.826+0100" 2023-11-22T12:14:14.835+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example[0]" references: [] ionoscloud_server.example[0]: Refreshing state... [id=a04d0138-9ac6-4cc9-b01a-1b6b903d06f6] 2023-11-22T12:14:14.879+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 219.7471ms for operation : IpblocksFindById: timestamp="2023-11-22T12:14:14.874+0100" 2023-11-22T12:14:14.879+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:14.874+0100" 2023-11-22T12:14:14.879+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: IPS: 85.215.147.128: timestamp="2023-11-22T12:14:14.874+0100" 2023-11-22T12:14:14.885+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_ipblock.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .ip_consumers: block count in plan (1) disagrees with count in config (0) 2023-11-22T12:14:15.059+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 209.3316ms for operation : DatacentersServersFindById: timestamp="2023-11-22T12:14:15.059+0100" 2023-11-22T12:14:15.059+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.059+0100" 2023-11-22T12:14:15.204+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 143.2418ms for operation : DatacentersServersNicsFindById: timestamp="2023-11-22T12:14:15.204+0100" 2023-11-22T12:14:15.204+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.204+0100" 2023-11-22T12:14:15.406+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 200.1821ms for operation : DatacentersServersLabelsGet: timestamp="2023-11-22T12:14:15.406+0100" 2023-11-22T12:14:15.406+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.406+0100" 2023-11-22T12:14:15.423+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_server.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .volume[0].image_password: planned value cty.StringVal("") for a non-computed attribute - .volume[0].ssh_key_path: planned value cty.ListValEmpty(cty.String) for a non-computed attribute - .nic[0].firewall_active: planned value cty.False for a non-computed attribute 2023-11-22T12:14:15.426+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example[0]" references: [] 2023-11-22T12:14:15.432+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example[0]" references: [] ionoscloud_nic.example[0]: Refreshing state... [id=b8b24fa0-9643-46af-94e8-b154180daa16] ionoscloud_volume.example[0]: Refreshing state... [id=c9bd1446-546b-4409-a30e-3ac89e6898ef] 2023-11-22T12:14:15.585+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 143.0193ms for operation : DatacentersServersNicsFindById: timestamp="2023-11-22T12:14:15.584+0100" 2023-11-22T12:14:15.586+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.584+0100" 2023-11-22T12:14:15.586+0100 [INFO] provider.terraform-provider-ionoscloud_v6.4.10.exe: LAN ON NIC: 824640058896: timestamp="2023-11-22T12:14:15.585+0100" 2023-11-22T12:14:15.592+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example[0]" references: [] 2023-11-22T12:14:15.592+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example[1]" references: [] ionoscloud_firewall.example[0]: Refreshing state... [id=df0feecf-0740-410d-8343-91e2fb559c0f] ionoscloud_firewall.example[1]: Refreshing state... [id=71b332e6-6068-4675-8d74-26c5c45669a5] 2023-11-22T12:14:15.627+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 178.212ms for operation : DatacentersVolumesFindById: timestamp="2023-11-22T12:14:15.626+0100" 2023-11-22T12:14:15.627+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.626+0100" 2023-11-22T12:14:15.770+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 169.3754ms for operation : DatacentersServersNicsFirewallrulesFindById: timestamp="2023-11-22T12:14:15.769+0100" 2023-11-22T12:14:15.770+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.769+0100" 2023-11-22T12:14:15.775+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_firewall.example[0], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .source_ip: planned value cty.NullVal(cty.String) does not match config value cty.StringVal("") 2023-11-22T12:14:15.779+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 174.8812ms for operation : DatacentersServersNicsFirewallrulesFindById: timestamp="2023-11-22T12:14:15.776+0100" 2023-11-22T12:14:15.779+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.776+0100" 2023-11-22T12:14:15.784+0100 [WARN] Provider "registry.terraform.io/ionos-cloud/ionoscloud" produced an invalid plan for ionoscloud_firewall.example[1], but we are tolerating it because it is using the legacy plugin SDK. The following problems may be the cause of any confusing errors from downstream operations: - .source_ip: planned value cty.NullVal(cty.String) does not match config value cty.StringVal("") 2023-11-22T12:14:15.791+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: Request time : 164.9342ms for operation : DatacentersServersVolumesFindById: timestamp="2023-11-22T12:14:15.791+0100" 2023-11-22T12:14:15.791+0100 [DEBUG] provider.terraform-provider-ionoscloud_v6.4.10.exe: response status code : 200: timestamp="2023-11-22T12:14:15.791+0100" 2023-11-22T12:14:15.803+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF" 2023-11-22T12:14:15.825+0100 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/ionos-cloud/ionoscloud/6.4.10/windows_amd64/terraform-provider-ionoscloud_v6.4.10.exe pid=27532 2023-11-22T12:14:15.831+0100 [DEBUG] provider: plugin exited 2023-11-22T12:14:15.833+0100 [DEBUG] no planned changes, skipping apply graph check No changes. Your infrastructure matches the configuration. Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are needed. 2023-11-22T12:14:15.840+0100 [INFO] backend/local: apply calling Apply 2023-11-22T12:14:15.840+0100 [DEBUG] Building and walking apply graph for NormalMode plan 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_server.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pub (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_nic.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_volume.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_ipblock.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_firewall.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "data.ionoscloud_image.cdrom (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_datacenter.example (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "ionoscloud_lan.example-pvt (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/ionos-cloud/ionoscloud"] 2023-11-22T12:14:15.842+0100 [DEBUG] ProviderTransformer: "random_string.rnd (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/random"] 2023-11-22T12:14:15.843+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pub (expand)" references: [var.vm_prefix local.datacenter (expand)] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_location var.dc_name] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_image.cdrom (expand)" references: [var.os_family var.dc_location var.vm_image] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.dc_location" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.vm_state" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "ionoscloud_lan.example-pvt (expand)" references: [local.datacenter (expand) var.vm_prefix] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "local.location (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "output.pvt_ips (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.cpu_family" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_size" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.dc_name" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "ionoscloud_nic.example (expand)" references: [var.vm_count ionoscloud_lan.example-pub (expand) ionoscloud_ipblock.example (expand) random_string.rnd (expand) local.datacenter (expand) ionoscloud_server.example (expand) var.firewall_aktive var.firewall_rules] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "ionoscloud_volume.example (expand)" references: [var.volumes var.vm_count var.volumes var.vm_count var.volumes var.volumes var.vm_count var.volumes random_string.rnd (expand) var.vm_count local.datacenter (expand) var.volumes var.vm_count var.volumes ionoscloud_server.example (expand) var.vm_count] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "random_string.rnd (expand)" references: [var.vm_count] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "data.ionoscloud_datacenter.example (expand)" references: [var.dc_exists var.dc_name var.dc_location] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.user_data" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.vm_count" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "var.vm_prefix" references: [] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "local.user_data_b64 (expand)" references: [var.user_data var.os_family local.user_data (expand)] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "local.image_name (expand)" references: [var.os_family var.vm_image] 2023-11-22T12:14:15.844+0100 [DEBUG] ReferenceTransformer: "local.boot_cdrom (expand)" references: [var.os_family data.ionoscloud_image.cdrom (expand)] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "ionoscloud_server.example (expand)" references: [var.vm_count var.vm_cores var.cpu_family var.vm_ram var.vm_state var.vm_prefix random_string.rnd (expand) local.boot_cdrom (expand) local.datacenter (expand) local.image_name (expand) var.boot_volume_type var.boot_volume_size local.user_data_b64 (expand) random_string.rnd (expand) var.os_family var.os_family var.vm_prefix random_string.rnd (expand) ionoscloud_lan.example-pvt (expand) random_string.rnd (expand)] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "var.vm_image" references: [] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "var.os_family" references: [] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "var.volumes" references: [] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "local.datacenter (expand)" references: [var.dc_exists data.ionoscloud_datacenter.example (expand) ionoscloud_datacenter.example (expand)] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "output.pub_ips (expand)" references: [ionoscloud_nic.example (expand) ionoscloud_nic.example (expand)] 2023-11-22T12:14:15.845+0100 [DEBUG] ReferenceTransformer: "ionoscloud_ipblock.example (expand)" references: [var.vm_count var.vm_prefix random_string.rnd (expand) local.location (expand)] 2023-11-22T12:14:15.846+0100 [DEBUG] ReferenceTransformer: "var.boot_volume_type" references: [] 2023-11-22T12:14:15.846+0100 [DEBUG] ReferenceTransformer: "var.firewall_aktive" references: [] 2023-11-22T12:14:15.846+0100 [DEBUG] ReferenceTransformer: "var.vm_cores" references: [] 2023-11-22T12:14:15.846+0100 [DEBUG] ReferenceTransformer: "var.firewall_rules" references: [] 2023-11-22T12:14:15.846+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/ionos-cloud/ionoscloud\"]" references: [] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "ionoscloud_firewall.example (expand)" references: [var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules ionoscloud_nic.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules ionoscloud_server.example (expand) var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.vm_count var.firewall_rules var.firewall_rules var.vm_count var.firewall_rules local.datacenter (expand)] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "var.dc_exists" references: [] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "var.vm_ram" references: [] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "local.user_data (expand)" references: [var.user_data var.user_data var.user_data var.user_data] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "output.ids (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "output.names (expand)" references: [ionoscloud_server.example (expand)] 2023-11-22T12:14:15.848+0100 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/random\"]" references: [] 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_volume.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_firewall.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_nic.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_server.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_ipblock.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_lan.example-pub (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_lan.example-pvt (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.location (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: random_string.rnd (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.user_data_b64 (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.image_name (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.boot_cdrom (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.datacenter (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: provider["registry.terraform.io/hashicorp/random"] is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: ionoscloud_datacenter.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: data.ionoscloud_image.cdrom (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: data.ionoscloud_datacenter.example (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: local.user_data (expand) is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] pruneUnusedNodes: provider["registry.terraform.io/ionos-cloud/ionoscloud"] is no longer needed, removing 2023-11-22T12:14:15.848+0100 [DEBUG] Starting graph walk: walkApply Apply complete! Resources: 0 added, 0 changed, 0 destroyed. Outputs: ids = [ "a04d0138-9ac6-4cc9-b01a-1b6b903d06f6", ] ```
cbeti-ionos commented 9 months ago

I run it again - It works with a Linux based image but not a Windows one. Strange since the drive shout not care what bits are one it.

This is good to know, it'll help us narrow down the search for the issue. Also thank you for providing us with the logs, we will start investigating this asap.

cbeti-ionos commented 9 months ago

Hello, The issue you are currently facing is actually currently caused by boot_cdrom, which switches the boot device of the server from the inline volume to the cdrom image. There is currently a known bug which affects updates of the inline volume when a different boot device is set, the fix is work in progress.

hegerdes commented 8 months ago

Is there an ETA for the fix?

cbeti-ionos commented 8 months ago

the fix for this is included in a larger feature which will allow the user to select the boot device of a server resource currently we are experimenting with multiple implementations to see which fits best, so it probably won't make it in the next release

cbeti-ionos commented 8 months ago

Hello, the fix will be available in the next release, we've implemented a new resource that allows the management of boot devices for the server resource.