hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.74k stars 9.1k forks source link

[Bug]: `aws_quicksight_analysis` throws custom InvalidParameterValueException for custom font weight #32440

Closed jshort-insights closed 1 year ago

jshort-insights commented 1 year ago

Terraform Core Version

1.5.2

AWS Provider Version

5.5.0

Affected Resource(s)

aws_quicksight_analysis

Expected Behavior

Setting the headerstyle with custom font setting should be honoured

Actual Behavior

Some validation is hit which appears to suggest font weight has been set, when it hasn't been configured. Setting font weight also appears to cause the same issue

Relevant Error/Panic Output Snippet

│ Error: creating Amazon QuickSight Analysis (Old vs New Total example Analysis): InvalidParameterValueException: Custom font weight is not supported for this chart.
│ {
│   RespMetadata: {
│     StatusCode: 400,
│     RequestID: "3f2fc39c-13bd-49f4-8fbf-b3fca4bb3e96"
│   },
│   Message_: "Custom font weight is not supported for this chart.",
│   RequestId: "3f2fc39c-13bd-49f4-8fbf-b3fca4bb3e96"
│ }

Terraform Configuration Files

resource "aws_quicksight_analysis" "generated_total_example_analysis" {
  analysis_id    = "generated-total-example-analysis"
  name           = "Old vs New Total example Analysis"
  aws_account_id = data.aws_caller_identity.current.account_id

  definition {
    data_set_identifiers_declarations {
      data_set_arn = aws_quicksight_data_set.unified_generated_profile_data_set.arn
      identifier   = aws_quicksight_data_set.unified_generated_profile_data_set.id
    }

    calculated_fields {
      data_set_identifier = aws_quicksight_data_set.unified_generated_profile_data_set.id
      name                = "Date"
      expression          = "parseDate(concat(toString(1), '/', toString(month), '/', toString(year)), 'dd/MM/yyyy')"
    }

    sheets {
      sheet_id = "total-example-sheet"
      name     = "Old V New Generated example"
      visuals {
        table_visual {
          visual_id = "example-response-visual"
          title {
            visibility = "HIDDEN"
            format_text {
              rich_text = "<visual-title>example</visual-title>"
            }
          }
          subtitle {
            visibility = "HIDDEN"
          }
          chart_configuration {
            field_wells {
              table_unaggregated_field_wells {
                dynamic "values" {
                  for_each = local.example_response_columns
                  content {
                    field_id = "example-field-${values.value}"
                    column {
                      data_set_identifier = aws_quicksight_data_set.unified_generated_profile_data_set.id
                      column_name         = values.value
                    }
                  }
                }
              }
            }
            sort_configuration {
              row_sort {
                field_sort {
                  field_id  = "example-field-submitted on"
                  direction = "DESC"
                }
              }
            }
            table_options {
              header_style {
                height = 25
                font_configuration {
                  font_decoration = "NONE"
                  font_style      = "NORMAL"
                  font_color      = "#212121"
                  font_size {
                    relative = "LARGE"
                  }
                  font_weight {
                    name = "NORMAL"
                  }
                }
              }
            }
          }
        }
      }

      layouts {
        configuration {
          grid_layout {
            elements {
              element_id   = "old-new-comparison-chart"
              element_type = "VISUAL"
              column_index = "0"
              column_span  = "32"
              row_index    = "0"
              row_span     = "12"
            }

            canvas_size_options {
              screen_canvas_size_options {
                resize_option             = "FIXED"
                optimized_view_port_width = "1600px"
              }
            }
          }
        }
      }

      content_type = "INTERACTIVE"
    }

    analysis_defaults {
      default_new_sheet_configuration {
        interactive_layout_configuration {
          grid {
            canvas_size_options {
              screen_canvas_size_options {
                resize_option             = "FIXED"
                optimized_view_port_width = "1600px"
              }
            }
          }
        }
        sheet_content_type = "INTERACTIVE"
      }
    }
  }
}

Steps to Reproduce

Configure header_style with a font_configuration on a table_visual and then apply plan

Debug Output

2023-07-11T14:02:29.636Z [INFO]  Terraform version: 1.5.2
2023-07-11T14:02:29.636Z [DEBUG] using github.com/hashicorp/go-tfe v1.26.0
2023-07-11T14:02:29.637Z [DEBUG] using github.com/hashicorp/hcl/v2 v2.16.2
2023-07-11T14:02:29.637Z [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.0
2023-07-11T14:02:29.637Z [DEBUG] using github.com/zclconf/go-cty v1.12.2
2023-07-11T14:02:29.638Z [INFO]  Go runtime version: go1.20
2023-07-11T14:02:29.638Z [INFO]  CLI args: []string{"/bin/terraform", "-chdir=/data/env/developer", "init", "-input=false"}
2023-07-11T14:02:29.638Z [DEBUG] Attempting to open CLI config file: /.terraformrc
2023-07-11T14:02:29.639Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2023-07-11T14:02:29.639Z [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2023-07-11T14:02:29.639Z [DEBUG] ignoring non-existing provider search directory /.terraform.d/plugins
2023-07-11T14:02:29.640Z [DEBUG] ignoring non-existing provider search directory /.local/share/terraform/plugins
2023-07-11T14:02:29.640Z [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2023-07-11T14:02:29.640Z [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2023-07-11T14:02:29.641Z [INFO]  CLI command args: []string{"init", "-input=false"}
2023-07-11T14:02:29.649Z [ERROR] Checkpoint error: mkdir /.terraform.d: permission denied
2023-07-11T14:02:29.732Z [DEBUG] New state was assigned lineage "5a492ba3-8b9c-abd8-c5e2-7b60d8bc1043"
2023-07-11T14:02:32.988Z [DEBUG] checking for provisioner in "."
2023-07-11T14:02:32.988Z [DEBUG] checking for provisioner in "/bin"
2023-07-11T14:02:33.021Z [DEBUG] Module installer: begin example
2023-07-11T14:02:33.100Z [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
2023-07-11T14:02:33.425Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/random/versions
2023-07-11T14:02:33.597Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/cloudinit/versions
2023-07-11T14:02:33.759Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/tls/versions
2023-07-11T14:02:33.931Z [DEBUG] GET https://registry.terraform.io/v1/providers/datadog/datadog/versions
2023-07-11T14:02:34.104Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/versions
2023-07-11T14:02:34.276Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/http/versions
2023-07-11T14:02:34.440Z [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/archive/versions
2023-07-11T14:02:38.842Z [INFO]  Terraform version: 1.5.2
2023-07-11T14:02:38.842Z [DEBUG] using github.com/hashicorp/go-tfe v1.26.0
2023-07-11T14:02:38.843Z [DEBUG] using github.com/hashicorp/hcl/v2 v2.16.2
2023-07-11T14:02:38.843Z [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.0
2023-07-11T14:02:38.844Z [DEBUG] using github.com/zclconf/go-cty v1.12.2
2023-07-11T14:02:38.844Z [INFO]  Go runtime version: go1.20
2023-07-11T14:02:38.844Z [INFO]  CLI args: []string{"/bin/terraform", "-chdir=/data/env/developer", "apply", "-auto-approve"}
2023-07-11T14:02:38.845Z [DEBUG] Attempting to open CLI config file: /.terraformrc
2023-07-11T14:02:38.845Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2023-07-11T14:02:38.845Z [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2023-07-11T14:02:38.845Z [DEBUG] ignoring non-existing provider search directory /.terraform.d/plugins
2023-07-11T14:02:38.845Z [DEBUG] ignoring non-existing provider search directory /.local/share/terraform/plugins
2023-07-11T14:02:38.846Z [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2023-07-11T14:02:38.846Z [DEBUG] ignoring non-existing provider search directory /usr/share/terraform/plugins
2023-07-11T14:02:38.847Z [INFO]  CLI command args: []string{"apply", "-auto-approve"}
2023-07-11T14:02:38.863Z [ERROR] Checkpoint error: mkdir /.terraform.d: permission denied
2023-07-11T14:02:38.899Z [DEBUG] New state was assigned lineage "5064238a-3105-f494-1e6a-07b594f7277e"
2023-07-11T14:02:41.371Z [DEBUG] checking for provisioner in "."
2023-07-11T14:02:41.371Z [DEBUG] checking for provisioner in "/bin"
2023-07-11T14:02:41.395Z [INFO]  backend/local: starting Apply operation
2023-07-11T14:02:41.494Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:41.495Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:41.510Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/datadog/datadog/3.26.0/linux_amd64/terraform-provider-datadog_v3.26.0 args=[.terraform/providers/registry.terraform.io/datadog/datadog/3.26.0/linux_amd64/terraform-provider-datadog_v3.26.0]
2023-07-11T14:02:41.518Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/datadog/datadog/3.26.0/linux_amd64/terraform-provider-datadog_v3.26.0 pid=15
2023-07-11T14:02:41.518Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/datadog/datadog/3.26.0/linux_amd64/terraform-provider-datadog_v3.26.0
2023-07-11T14:02:41.852Z [INFO]  provider.terraform-provider-datadog_v3.26.0: configuring server automatic mTLS: timestamp=2023-07-11T14:02:41.852Z
2023-07-11T14:02:41.873Z [DEBUG] provider.terraform-provider-datadog_v3.26.0: plugin address: address=/tmp/plugin2270274469 network=unix timestamp=2023-07-11T14:02:41.873Z
2023-07-11T14:02:41.873Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:41.952Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:41.957Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/datadog/datadog/3.26.0/linux_amd64/terraform-provider-datadog_v3.26.0 pid=15
2023-07-11T14:02:41.957Z [DEBUG] provider: plugin exited
2023-07-11T14:02:41.965Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:41.966Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:41.971Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/archive/2.2.0/linux_amd64/terraform-provider-archive_v2.2.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/archive/2.2.0/linux_amd64/terraform-provider-archive_v2.2.0_x5]
2023-07-11T14:02:41.979Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/archive/2.2.0/linux_amd64/terraform-provider-archive_v2.2.0_x5 pid=24
2023-07-11T14:02:41.979Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/archive/2.2.0/linux_amd64/terraform-provider-archive_v2.2.0_x5
2023-07-11T14:02:42.129Z [INFO]  provider.terraform-provider-archive_v2.2.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:42.129Z
2023-07-11T14:02:42.215Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:42.215Z [DEBUG] provider.terraform-provider-archive_v2.2.0_x5: plugin address: address=/tmp/plugin355909431 network=unix timestamp=2023-07-11T14:02:42.215Z
2023-07-11T14:02:42.267Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:42.270Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/archive/2.2.0/linux_amd64/terraform-provider-archive_v2.2.0_x5 pid=24
2023-07-11T14:02:42.271Z [DEBUG] provider: plugin exited
2023-07-11T14:02:42.277Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:42.277Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:42.282Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5]
2023-07-11T14:02:42.290Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=33
2023-07-11T14:02:42.290Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5
2023-07-11T14:02:44.209Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:44.209Z
2023-07-11T14:02:44.232Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: plugin address: address=/tmp/plugin3782907829 network=unix timestamp=2023-07-11T14:02:44.231Z
2023-07-11T14:02:44.232Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:44.677Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:44.688Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=33
2023-07-11T14:02:44.688Z [DEBUG] provider: plugin exited
2023-07-11T14:02:44.696Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:44.696Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:44.702Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/cloudinit/2.2.0/linux_amd64/terraform-provider-cloudinit_v2.2.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/cloudinit/2.2.0/linux_amd64/terraform-provider-cloudinit_v2.2.0_x5]
2023-07-11T14:02:44.710Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/cloudinit/2.2.0/linux_amd64/terraform-provider-cloudinit_v2.2.0_x5 pid=43
2023-07-11T14:02:44.710Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/cloudinit/2.2.0/linux_amd64/terraform-provider-cloudinit_v2.2.0_x5
2023-07-11T14:02:44.889Z [INFO]  provider.terraform-provider-cloudinit_v2.2.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:44.889Z
2023-07-11T14:02:44.933Z [DEBUG] provider.terraform-provider-cloudinit_v2.2.0_x5: plugin address: address=/tmp/plugin303128207 network=unix timestamp=2023-07-11T14:02:44.933Z
2023-07-11T14:02:44.933Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:45.028Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:45.032Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/cloudinit/2.2.0/linux_amd64/terraform-provider-cloudinit_v2.2.0_x5 pid=43
2023-07-11T14:02:45.032Z [DEBUG] provider: plugin exited
2023-07-11T14:02:45.039Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:45.040Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:45.046Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.0.0/linux_amd64/terraform-provider-http_v2.0.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/http/2.0.0/linux_amd64/terraform-provider-http_v2.0.0_x5]
2023-07-11T14:02:45.052Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.0.0/linux_amd64/terraform-provider-http_v2.0.0_x5 pid=52
2023-07-11T14:02:45.052Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.0.0/linux_amd64/terraform-provider-http_v2.0.0_x5
2023-07-11T14:02:45.209Z [INFO]  provider.terraform-provider-http_v2.0.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:45.209Z
2023-07-11T14:02:45.235Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:45.235Z [DEBUG] provider.terraform-provider-http_v2.0.0_x5: plugin address: address=/tmp/plugin548160766 network=unix timestamp=2023-07-11T14:02:45.235Z
2023-07-11T14:02:45.279Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:45.282Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/http/2.0.0/linux_amd64/terraform-provider-http_v2.0.0_x5 pid=52
2023-07-11T14:02:45.283Z [DEBUG] provider: plugin exited
2023-07-11T14:02:45.289Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:45.289Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:45.295Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5]
2023-07-11T14:02:45.303Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=61
2023-07-11T14:02:45.303Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5
2023-07-11T14:02:45.436Z [INFO]  provider.terraform-provider-random_v3.1.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:45.436Z
2023-07-11T14:02:45.479Z [DEBUG] provider.terraform-provider-random_v3.1.0_x5: plugin address: address=/tmp/plugin456684101 network=unix timestamp=2023-07-11T14:02:45.479Z
2023-07-11T14:02:45.479Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:45.547Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:45.550Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/random/3.1.0/linux_amd64/terraform-provider-random_v3.1.0_x5 pid=61
2023-07-11T14:02:45.550Z [DEBUG] provider: plugin exited
2023-07-11T14:02:45.557Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:45.557Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:45.563Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/tls/4.0.4/linux_amd64/terraform-provider-tls_v4.0.4_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/tls/4.0.4/linux_amd64/terraform-provider-tls_v4.0.4_x5]
2023-07-11T14:02:45.570Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/tls/4.0.4/linux_amd64/terraform-provider-tls_v4.0.4_x5 pid=70
2023-07-11T14:02:45.570Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/tls/4.0.4/linux_amd64/terraform-provider-tls_v4.0.4_x5
2023-07-11T14:02:45.726Z [INFO]  provider.terraform-provider-tls_v4.0.4_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:45.726Z
2023-07-11T14:02:45.742Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:45.742Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: plugin address: address=/tmp/plugin1264437837 network=unix timestamp=2023-07-11T14:02:45.742Z
2023-07-11T14:02:45.773Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Provider Metadata: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_getproviderschema.go:39 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.773Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Provider Metadata: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server_getproviderschema.go:41 timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.774Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Provider GetSchema: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:260 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.774Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Provider GetSchema: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:262 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.774Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Provider Resources: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:330 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.775Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Provider Resources: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:332 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.775Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Resource GetSchema: tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:411 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_resource_type=tls_cert_request timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.775Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Resource GetSchema: tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:413 tf_provider_addr=registry.terraform.io/hashicorp/tls tf_resource_type=tls_cert_request timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.775Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Resource GetSchema: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_resource_type=tls_locally_signed_cert @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:411 @module=sdk.framework tf_rpc=GetProviderSchema timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.776Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Resource GetSchema: @module=sdk.framework tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_resource_type=tls_locally_signed_cert @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:413 tf_provider_addr=registry.terraform.io/hashicorp/tls tf_rpc=GetProviderSchema timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.776Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Resource GetSchema: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:411 tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_provider_addr=registry.terraform.io/hashicorp/tls tf_resource_type=tls_private_key tf_rpc=GetProviderSchema @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.776Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Resource GetSchema: tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_resource_type=tls_private_key tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:413 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.776Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Resource GetSchema: @module=sdk.framework tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_resource_type=tls_self_signed_cert @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:411 tf_provider_addr=registry.terraform.io/hashicorp/tls tf_rpc=GetProviderSchema timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.776Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Resource GetSchema: tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_resource_type=tls_self_signed_cert @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:413 timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.777Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined Provider DataSources: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:152 timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.777Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined Provider DataSources: tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:154 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.777Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined DataSource GetSchema: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:233 tf_data_source_type=tls_certificate tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.777Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined DataSource GetSchema: @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:235 tf_provider_addr=registry.terraform.io/hashicorp/tls tf_rpc=GetProviderSchema @module=sdk.framework tf_data_source_type=tls_certificate tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.777Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Calling provider defined DataSource GetSchema: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:233 tf_data_source_type=tls_public_key timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.778Z [DEBUG] provider.terraform-provider-tls_v4.0.4_x5: Called provider defined DataSource GetSchema: tf_data_source_type=tls_public_key tf_provider_addr=registry.terraform.io/hashicorp/tls tf_req_id=1b297d11-a8d4-350b-f07d-d2361f806b2c tf_rpc=GetProviderSchema @caller=github.com/hashicorp/terraform-plugin-framework@v0.15.0/internal/fwserver/server.go:235 @module=sdk.framework timestamp=2023-07-11T14:02:45.773Z
2023-07-11T14:02:45.778Z [DEBUG] No provider meta schema returned
2023-07-11T14:02:45.779Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:45.784Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/tls/4.0.4/linux_amd64/terraform-provider-tls_v4.0.4_x5 pid=70
2023-07-11T14:02:45.784Z [DEBUG] provider: plugin exited
2023-07-11T14:02:45.785Z [DEBUG] Building and walking validate graph
2023-07-11T14:02:45.785Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.786Z [DEBUG] ProviderTransformer: "aws_ssm_parameter.profiles_access_logs" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.786Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.786Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.786Z [DEBUG] ProviderTransformer: "aws_quicksight_group.author_group" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.786Z [DEBUG] ProviderTransformer: "module.example.data.aws_caller_identity.current" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.787Z [DEBUG] ProviderTransformer: "data.aws_caller_identity.current" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.787Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.instance_assume_role_policy" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:45.787Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/http"]
2023-07-11T14:02:45.787Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/archive"]
2023-07-11T14:02:45.788Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/random"]
2023-07-11T14:02:45.788Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/cloudinit"]
2023-07-11T14:02:45.788Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/tls"]
2023-07-11T14:02:45.788Z [DEBUG] pruning unused provider["registry.terraform.io/datadog/datadog"]
2023-07-11T14:02:45.789Z [DEBUG] ReferenceTransformer: "aws_ssm_parameter.profiles_access_logs" references: []
2023-07-11T14:02:45.789Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document" references: []
2023-07-11T14:02:45.851Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" references: [module.example.data.aws_caller_identity.current module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.local.example_response_columns (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set]
2023-07-11T14:02:45.852Z [DEBUG] ReferenceTransformer: "module.example (close)" references: []
2023-07-11T14:02:45.852Z [DEBUG] ReferenceTransformer: "aws_quicksight_group.author_group" references: [data.aws_caller_identity.current]
2023-07-11T14:02:45.853Z [DEBUG] ReferenceTransformer: "module.example.local.example_response_columns (expand)" references: []
2023-07-11T14:02:45.853Z [DEBUG] ReferenceTransformer: "module.example (expand)" references: []
2023-07-11T14:02:45.853Z [DEBUG] ReferenceTransformer: "module.example.data.aws_caller_identity.current" references: []
2023-07-11T14:02:45.854Z [DEBUG] ReferenceTransformer: "module.example.var.unified_data_set_arns (expand)" references: []
2023-07-11T14:02:45.854Z [DEBUG] ReferenceTransformer: "local.region (expand)" references: []
2023-07-11T14:02:45.855Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [local.region (expand)]
2023-07-11T14:02:45.855Z [DEBUG] ReferenceTransformer: "data.aws_caller_identity.current" references: []
2023-07-11T14:02:45.855Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.instance_assume_role_policy" references: []
2023-07-11T14:02:45.856Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" references: [module.example.data.aws_caller_identity.current module.example.var.unified_data_set_arns (expand) module.example.var.unified_data_set_arns (expand)]
2023-07-11T14:02:45.856Z [DEBUG] ReferenceTransformer: "local.environment_name (expand)" references: [data.aws_caller_identity.current]
2023-07-11T14:02:45.857Z [DEBUG] Starting graph walk: walkValidate
2023-07-11T14:02:45.864Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:45.865Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:45.870Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5]
2023-07-11T14:02:45.878Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=79
2023-07-11T14:02:45.878Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5
2023-07-11T14:02:47.776Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:47.776Z
2023-07-11T14:02:47.798Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: plugin address: address=/tmp/plugin3560136569 network=unix timestamp=2023-07-11T14:02:47.798Z
2023-07-11T14:02:47.798Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:48.127Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.127Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_attribute_path=forbidden_account_ids timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.128Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @module=sdk.framework tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.128Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @module=sdk.framework tf_attribute_path=shared_config_files tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.128Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_attribute_path=shared_credentials_files tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.128Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_attribute_path=shared_credentials_files tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.128Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_mux_provider=*proto5server.Server @module=sdk.framework tf_attribute_path=max_retries tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.129Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_attribute_path=max_retries tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.129Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_attribute_path=allowed_account_ids tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.129Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig tf_attribute_path=allowed_account_ids tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.129Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.130Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.130Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework description="list must contain at most 1 elements" tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 timestamp=2023-07-11T14:02:48.127Z
2023-07-11T14:02:48.130Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: @module=sdk.framework description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.130Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.130Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.131Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.131Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_mux_provider=*proto5server.Server description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.131Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.131Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.132Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 @module=sdk.framework description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.132Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework description="list must contain at most 1 elements" tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.128Z
2023-07-11T14:02:48.132Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_mux_provider=*proto5server.Server @module=sdk.framework timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.132Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.133Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.133Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.133Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 tf_mux_provider=*proto5server.Server tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.133Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=de3eb1b8-0fcc-e79d-8d5d-7b4fa93c8a81 tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:48.129Z
2023-07-11T14:02:48.136Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_req_id=99ac77c7-679d-c5ae-1bc5-e8fc8b1dad44 tf_rpc=ValidateDataSourceConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:42 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:48.136Z
2023-07-11T14:02:48.136Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:44 tf_data_source_type=aws_caller_identity tf_req_id=99ac77c7-679d-c5ae-1bc5-e8fc8b1dad44 tf_rpc=ValidateDataSourceConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:48.136Z
2023-07-11T14:02:48.137Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:42 tf_data_source_type=aws_caller_identity @module=sdk.framework tf_req_id=f2dfa867-f744-020a-c5a3-1bc9b0bc45c3 tf_rpc=ValidateDataSourceConfig timestamp=2023-07-11T14:02:48.136Z
2023-07-11T14:02:48.137Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:44 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=f2dfa867-f744-020a-c5a3-1bc9b0bc45c3 tf_rpc=ValidateDataSourceConfig tf_data_source_type=aws_caller_identity timestamp=2023-07-11T14:02:48.136Z
2023-07-11T14:02:48.322Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:02:48.333Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=79
2023-07-11T14:02:48.333Z [DEBUG] provider: plugin exited
2023-07-11T14:02:48.334Z [INFO]  backend/local: apply calling Plan
2023-07-11T14:02:48.334Z [DEBUG] Building and walking plan graph for NormalMode
2023-07-11T14:02:48.335Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.336Z [DEBUG] ProviderTransformer: "aws_quicksight_group.author_group (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.336Z [DEBUG] ProviderTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.337Z [DEBUG] ProviderTransformer: "module.example.data.aws_caller_identity.current (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.337Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.338Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.338Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.338Z [DEBUG] ProviderTransformer: "data.aws_caller_identity.current (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:02:48.339Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/tls"]
2023-07-11T14:02:48.339Z [DEBUG] pruning unused provider["registry.terraform.io/datadog/datadog"]
2023-07-11T14:02:48.340Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/cloudinit"]
2023-07-11T14:02:48.340Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/http"]
2023-07-11T14:02:48.340Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/archive"]
2023-07-11T14:02:48.340Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/random"]
2023-07-11T14:02:48.340Z [DEBUG] ReferenceTransformer: "data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:02:48.341Z [DEBUG] ReferenceTransformer: "module.example.local.example_response_columns (expand)" references: []
2023-07-11T14:02:48.341Z [DEBUG] ReferenceTransformer: "module.example (expand)" references: []
2023-07-11T14:02:48.341Z [DEBUG] ReferenceTransformer: "module.example (close)" references: []
2023-07-11T14:02:48.341Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" references: [module.example.data.aws_caller_identity.current (expand) module.example.var.unified_data_set_arns (expand) module.example.var.unified_data_set_arns (expand)]
2023-07-11T14:02:48.342Z [DEBUG] ReferenceTransformer: "local.region (expand)" references: []
2023-07-11T14:02:48.342Z [DEBUG] ReferenceTransformer: "aws_quicksight_group.author_group (expand)" references: [data.aws_caller_identity.current (expand)]
2023-07-11T14:02:48.342Z [DEBUG] ReferenceTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" references: []
2023-07-11T14:02:48.342Z [DEBUG] ReferenceTransformer: "module.example.var.unified_data_set_arns (expand)" references: []
2023-07-11T14:02:48.342Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [local.region (expand)]
2023-07-11T14:02:48.343Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" references: []
2023-07-11T14:02:48.343Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" references: []
2023-07-11T14:02:48.343Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" references: [module.example.data.aws_caller_identity.current (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.local.example_response_columns (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)]
2023-07-11T14:02:48.344Z [DEBUG] ReferenceTransformer: "module.example.data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:02:48.344Z [DEBUG] ReferenceTransformer: "local.environment_name (expand)" references: [data.aws_caller_identity.current (expand)]
2023-07-11T14:02:48.345Z [DEBUG] Starting graph walk: walkPlan
2023-07-11T14:02:48.353Z [DEBUG] created provider logger: level=debug
2023-07-11T14:02:48.353Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:02:48.358Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5]
2023-07-11T14:02:48.364Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=88
2023-07-11T14:02:48.364Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5
2023-07-11T14:02:50.429Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:02:50.429Z
2023-07-11T14:02:50.451Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: plugin address: address=/tmp/plugin500973991 network=unix timestamp=2023-07-11T14:02:50.451Z
2023-07-11T14:02:50.451Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:02:50.834Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_attribute_path=shared_credentials_files tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.834Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=shared_credentials_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_rpc=PrepareProviderConfig tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.835Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_attribute_path=allowed_account_ids tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.835Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_attribute_path=allowed_account_ids tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.835Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.836Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_attribute_path=forbidden_account_ids tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.836Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.836Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.836Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_attribute_path=max_retries tf_rpc=PrepareProviderConfig @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.837Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_attribute_path=max_retries tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @module=sdk.framework timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.837Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.837Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.837Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework tf_rpc=PrepareProviderConfig tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.837Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_rpc=PrepareProviderConfig description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.838Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.838Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.838Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework description="list must contain at most 1 elements" tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.838Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_rpc=PrepareProviderConfig @module=sdk.framework tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:50.834Z
2023-07-11T14:02:50.839Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @module=sdk.framework tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.839Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.839Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.839Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.839Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.840Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.840Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.840Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.840Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: tf_mux_provider=*proto5server.Server @module=sdk.framework description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.841Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=e452915c-512d-a0df-872b-ef37d1742142 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 timestamp=2023-07-11T14:02:50.835Z
2023-07-11T14:02:50.855Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Configuring Terraform AWS Provider: @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:104 @module=aws tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:50.847Z
2023-07-11T14:02:50.859Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Resolving credentials provider: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_mux_provider=*schema.GRPCProviderServer tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base timestamp=2023-07-11T14:02:50.859Z
2023-07-11T14:02:50.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Using profile: tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_aws.profile.source=provider tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base tf_aws.profile=developer tf_mux_provider=*schema.GRPCProviderServer timestamp=2023-07-11T14:02:50.869Z
2023-07-11T14:02:50.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading profile: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_aws.profile=developer timestamp=2023-07-11T14:02:50.869Z
2023-07-11T14:02:50.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Setting profile: tf_aws.profile.source=provider tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider tf_aws.profile=developer tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base timestamp=2023-07-11T14:02:50.872Z
2023-07-11T14:02:50.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading configuration: tf_mux_provider=*schema.GRPCProviderServer @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:02:50.872Z
2023-07-11T14:02:50.877Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving credentials: tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:02:50.877Z
2023-07-11T14:02:50.885Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.region=us-east-1 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sso/1.12.12" aws.sdk=aws-sdk-go-v2 aws.service=SSO http.url=https://portal.sso.us-east-1.amazonaws.com/federation/credentials?account_id=123456789&role_name=administrator-access @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.operation=GetRoleCredentials http.request.header.amz_sdk_request="attempt=1; max=3" net.peer.name=portal.sso.us-east-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 http.request.body= http.request.header.amz_sdk_invocation_id=de2c4472-3267-4407-8265-3498cc154eac http.request.header.x_amz_sso_bearer_token=aoay74SWFiOtFdMjDejFbtY2e6gguSalz-2PDHcG4L7HV0gn7wtmB2PXsirHcHvR0Cpkk8-D79DUUFOafyhbXi9ZgAkc0:MGQCMBQF/dQWJaoQmFpRzK0I5crcTYBxK/xDW0kBFuWVgxFQVBNGe2XoEXgcYOrYHqU1nAIwb2JYcTI2sCde3H6zFECa9gVzSbFqDpzVKbpk8gvKPQL9LwA197qyiovavDkrGkzD tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @module=aws.aws-base http.method=GET timestamp=2023-07-11T14:02:50.885Z
2023-07-11T14:02:55.823Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.x_amzn_requestid=de302be0-1472-47fd-b54a-80002b393b87 tf_rpc=ConfigureProvider aws.operation=GetRoleCredentials http.response.body="{"roleCredentials":{"accessKeyId":"ASIA************NI7G","secretAccessKey":"xWL8********************************+ayq","sessionToken":"IQoJ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************EvE=","expiration":1689112974000}}
" http.response.header.access_control_expose_headers=[RequestId, x-amzn-RequestId] http.response.header.content_type=application/json aws.region=us-east-1 http.response.header.requestid=de302be0-1472-47fd-b54a-80002b393b87 http.response_content_length=1064 http.status_code=200 tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 aws.service=SSO http.response.header.cache_control=no-cache http.response.header.date="Tue, 11 Jul 2023 14:02:55 GMT" http.response.header.server="AWS SSO" aws.sdk=aws-sdk-go-v2 http.duration=4980 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base timestamp=2023-07-11T14:02:55.823Z
2023-07-11T14:02:55.824Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved credentials: @module=aws.aws-base tf_aws.credentials_source=SSOProvider tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:55.824Z
2023-07-11T14:02:55.825Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading configuration: tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 timestamp=2023-07-11T14:02:55.824Z
2023-07-11T14:02:55.828Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving caller identity from STS: tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:02:55.828Z
2023-07-11T14:02:55.829Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.service=STS http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/sts/aws4_request, Sign*********=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_date=20230711T140255Z @module=aws.aws-base aws.sdk=aws-sdk-go-v2 http.method=POST http.url=https://sts.eu-west-1.amazonaws.com/ aws.region=eu-west-1 http.request.body="Acti****************tity&Version=2011-06-15
" http.request_content_length=43 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sts/1.19.2" tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 net.peer.name=sts.eu-west-1.amazonaws.com @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.operation=GetCallerIdentity http.request.header.amz_sdk_invocation_id=9b72e27d-5942-4a89-a130-fe4a01e98f65 http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.content_type=application/x-www-form-urlencoded http.request.header.x_amz_security_token=***** tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:55.829Z
2023-07-11T14:02:56.141Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.duration=311 http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">

" http.response.header.content_type=text/xml tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws aws.operation=GetCallerIdentity tf_rpc=ConfigureProvider @module=aws.aws-base aws.sdk=aws-sdk-go-v2 aws.service=STS @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.region=eu-west-1 http.response.header.date="Tue, 11 Jul 2023 14:02:55 GMT" http.response.header.x_amzn_requestid=3c982ad8-1427-4dcd-a69a-fc241add74ee http.response_content_length=497 http.status_code=200 tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 timestamp=2023-07-11T14:02:56.141Z
2023-07-11T14:02:56.141Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved caller identity from STS: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 timestamp=2023-07-11T14:02:56.141Z
2023-07-11T14:02:56.141Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Creating AWS SDK v1 session: @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:117 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:56.141Z
2023-07-11T14:02:56.142Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving AWS account details: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:123 @module=aws tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 timestamp=2023-07-11T14:02:56.142Z
2023-07-11T14:02:56.142Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving caller identity from STS: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider @module=aws.aws-base timestamp=2023-07-11T14:02:56.142Z
2023-07-11T14:02:56.143Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.request.body="Acti****************tity&Version=2011-06-15
" http.request_content_length=43 net.peer.name=sts.eu-west-1.amazonaws.com aws.region=eu-west-1 http.request.header.amz_sdk_invocation_id=797c3be2-f450-41fe-a7fb-f3180966a30c http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/sts/aws4_request, Sign*********=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_date=20230711T140256Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sts/1.19.2" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.sdk=aws-sdk-go-v2 aws.service=STS http.url=https://sts.eu-west-1.amazonaws.com/ tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base aws.operation=GetCallerIdentity http.method=POST http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.content_type=application/x-www-form-urlencoded http.request.header.x_amz_security_token=***** tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:56.142Z
2023-07-11T14:02:56.203Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.service=STS http.response_content_length=497 @module=aws.aws-base aws.operation=GetCallerIdentity aws.sdk=aws-sdk-go-v2 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">

" http.response.header.content_type=text/xml http.response.header.x_amzn_requestid=52ecbdab-38ce-4d15-ab20-ffb3a22a2182 http.status_code=200 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 http.duration=61 tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 aws.region=eu-west-1 http.response.header.date="Tue, 11 Jul 2023 14:02:55 GMT" tf_mux_provider=*schema.GRPCProviderServer timestamp=2023-07-11T14:02:56.203Z
2023-07-11T14:02:56.204Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved caller identity from STS: tf_mux_provider=*schema.GRPCProviderServer tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:56.203Z
2023-07-11T14:02:56.204Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Provider Configure: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_configureprovider.go:15 tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider timestamp=2023-07-11T14:02:56.204Z
2023-07-11T14:02:56.205Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Provider Configure: tf_rpc=ConfigureProvider tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=c19eb5cb-1aeb-bfa7-7083-4f4a8c703598 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_configureprovider.go:23 @module=sdk.framework timestamp=2023-07-11T14:02:56.204Z
2023-07-11T14:02:56.206Z [DEBUG] ReferenceTransformer: "aws_ssm_parameter.profiles_access_logs" references: []
2023-07-11T14:02:56.206Z [DEBUG] ReferenceTransformer: "data.aws_caller_identity.current" references: []
2023-07-11T14:02:56.206Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.instance_assume_role_policy" references: []
2023-07-11T14:02:56.207Z [DEBUG] ReferenceTransformer: "module.example.data.aws_caller_identity.current" references: []
2023-07-11T14:02:56.208Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document" references: []
2023-07-11T14:02:56.212Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_rpc=ValidateDataSourceConfig @module=sdk.framework tf_req_id=bfceecc3-9f6d-15b1-d2d3-c3b7122431d8 tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:42 timestamp=2023-07-11T14:02:56.212Z
2023-07-11T14:02:56.212Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: @module=sdk.framework tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_req_id=bfceecc3-9f6d-15b1-d2d3-c3b7122431d8 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:44 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ValidateDataSourceConfig timestamp=2023-07-11T14:02:56.212Z
2023-07-11T14:02:56.213Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_req_id=2f984953-1129-62da-76df-8974000b9b25 tf_rpc=ValidateDataSourceConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:42 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:56.212Z
2023-07-11T14:02:56.213Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: @module=sdk.framework tf_data_source_type=aws_caller_identity tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=2f984953-1129-62da-76df-8974000b9b25 tf_rpc=ValidateDataSourceConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_validatedatasourceconfig.go:44 tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:56.212Z
2023-07-11T14:02:56.216Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:47 @module=sdk.framework tf_rpc=ReadDataSource timestamp=2023-07-11T14:02:56.216Z
2023-07-11T14:02:56.216Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 tf_rpc=ReadDataSource @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:49 timestamp=2023-07-11T14:02:56.216Z
2023-07-11T14:02:56.216Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Read: @module=sdk.framework tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:78 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadDataSource timestamp=2023-07-11T14:02:56.216Z
2023-07-11T14:02:56.222Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] Waiting for state to become: [success]
2023-07-11T14:02:56.230Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Configure: tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadDataSource @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:47 tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:02:56.229Z
2023-07-11T14:02:56.230Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Configure: @module=sdk.framework tf_data_source_type=aws_caller_identity tf_rpc=ReadDataSource @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:49 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 timestamp=2023-07-11T14:02:56.229Z
2023-07-11T14:02:56.230Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request_content_length=43 tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.region=eu-west-1 aws.service=STS http.request.body="Acti****************tity&Version=2011-06-15
" @module=aws aws.operation=GetCallerIdentity http.flavor=1.1 net.peer.name=sts.amazonaws.com tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server aws.sdk=aws-sdk-go aws.signing_region=us-east-1 http.method=POST http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/us-east-1/sts/aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.url=https://sts.amazonaws.com/ tf_rpc=ReadDataSource http.request.header.x_amz_date=20230711T140256Z http.request.header.x_amz_security_token=***** http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:56.229Z
2023-07-11T14:02:56.231Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined DataSource Read: @module=sdk.framework tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadDataSource tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:78 timestamp=2023-07-11T14:02:56.229Z
2023-07-11T14:02:56.231Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.region=eu-west-1 aws.service=STS http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" @module=aws http.request.body="Acti****************tity&Version=2011-06-15
" http.request.header.x_amz_security_token=***** http.request_content_length=43 tf_data_source_type=aws_caller_identity tf_rpc=ReadDataSource net.peer.name=sts.amazonaws.com aws.operation=GetCallerIdentity aws.signing_region=us-east-1 http.method=POST http.request.header.content_type="application/x-www-form-urlencoded; charset=utf-8" http.request.header.x_amz_date=20230711T140256Z http.url=https://sts.amazonaws.com/ tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws aws.sdk=aws-sdk-go http.flavor=1.1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/us-east-1/sts/aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 timestamp=2023-07-11T14:02:56.229Z
2023-07-11T14:02:56.239Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.request.header.content_type=application/x-amz-json-1.1 tf_mux_provider=*schema.GRPCProviderServer tf_resource_type=aws_ssm_parameter @module=aws aws.service=SSM http.flavor=1.1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/ssm/aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=*****" http.request.header.x_amz_date=20230711T140256Z http.request_content_length=67 aws.sdk=aws-sdk-go http.method=POST http.request.header.x_amz_security_token=***** net.peer.name=ssm.eu-west-1.amazonaws.com @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.operation=GetParameter tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 tf_rpc=ReadResource http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" aws.region=eu-west-1 http.request.body="{"Name":"/S3/**************************Name","WithDecryption":true}
" http.request.header.x_amz_target=AmazonSSM.GetParameter http.url=https://ssm.eu-west-1.amazonaws.com/ timestamp=2023-07-11T14:02:56.239Z
2023-07-11T14:02:56.601Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: @module=aws aws.region=eu-west-1 aws.sdk=aws-sdk-go http.response.header.connection=keep-alive aws.service=SSM http.duration=362 http.response.header.content_type=application/x-amz-json-1.1 http.response.body="{"Parameter":{"ARN":"arn:aws:ssm:eu-west-1:123456789:para***********************************Name","DataType":"text","Last********Date":1.688997587434E9,"Name":"/S3/**************************Name","Type":"String","Value":"redacted-athena","Version":1}}
" http.response.header.x_amzn_requestid=fe7cf7a2-b75a-49c6-bef5-8f8111e464f1 http.status_code=200 tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ReadResource tf_resource_type=aws_ssm_parameter @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.operation=GetParameter http.response.header.date="Tue, 11 Jul 2023 14:02:56 GMT" http.response.header.server=Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 timestamp=2023-07-11T14:02:56.601Z
2023-07-11T14:02:56.607Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: @module=aws aws.operation=DescribeParameters aws.region=eu-west-1 http.request.body="{"Para********ters":[{"Key":"Name","Option":"Equals","Values":["/S3/**************************Name"]}]}
" http.request.header.x_amz_date=20230711T140256Z tf_resource_type=aws_ssm_parameter http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/ssm/aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=*****" http.request.header.x_amz_target=AmazonSSM.DescribeParameters http.request_content_length=103 http.url=https://ssm.eu-west-1.amazonaws.com/ tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource aws.service=SSM http.flavor=1.1 http.request.header.x_amz_security_token=***** http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" net.peer.name=ssm.eu-west-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.sdk=aws-sdk-go http.method=POST http.request.header.content_type=application/x-amz-json-1.1 timestamp=2023-07-11T14:02:56.607Z
2023-07-11T14:02:56.680Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.date="Tue, 11 Jul 2023 14:02:56 GMT" http.response.header.x_amzn_requestid=2e2cebeb-a76b-4311-8f04-8bf782a82d20 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 http.duration=73 http.response.body="{"Parameters":[{"DataType":"text","Last********Date":1.688997587434E9,"Last********User":"arn:aws:sts::123456789:assumed-role***********dSSO_administrator-access_8b77***************hort@redacted.com","Name":"/S3/**************************Name","Policies":[],"Tier":"Standard","Type":"String","Version":1}]}
" http.response.header.content_type=application/x-amz-json-1.1 tf_mux_provider=*schema.GRPCProviderServer @module=aws aws.region=eu-west-1 aws.sdk=aws-sdk-go http.response.header.connection=keep-alive http.status_code=200 aws.operation=DescribeParameters aws.service=SSM tf_provider_addr=registry.terraform.io/hashicorp/aws http.response.header.server=Server tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 tf_resource_type=aws_ssm_parameter tf_rpc=ReadResource timestamp=2023-07-11T14:02:56.680Z
2023-07-11T14:02:56.686Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.region=eu-west-1 http.request.body="{"ResourceId":"/S3/**************************Name","ResourceType":"Parameter"}
" http.request.header.content_type=application/x-amz-json-1.1 http.request.header.x_amz_target=AmazonSSM.ListTagsForResource http.url=https://ssm.eu-west-1.amazonaws.com/ http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" net.peer.name=ssm.eu-west-1.amazonaws.com @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 aws.sdk=aws-sdk-go http.method=POST http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/ssm/aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token;x-amz-target, Signature=*****" http.request.header.x_amz_security_token=***** http.request_content_length=78 tf_mux_provider=*schema.GRPCProviderServer tf_resource_type=aws_ssm_parameter aws.operation=ListTagsForResource aws.service=SSM http.flavor=1.1 http.request.header.x_amz_date=20230711T140256Z tf_rpc=ReadResource @module=aws tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:56.686Z
2023-07-11T14:02:56.785Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.body="{"TagList":[]}
" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource aws.sdk=aws-sdk-go http.duration=98 aws.operation=ListTagsForResource http.response.header.server=Server http.response.header.content_type=application/x-amz-json-1.1 http.status_code=200 tf_resource_type=aws_ssm_parameter @module=aws http.response.header.connection=keep-alive aws.region=eu-west-1 aws.service=SSM http.response.header.date="Tue, 11 Jul 2023 14:02:56 GMT" http.response.header.x_amzn_requestid=3b8b6580-4d34-4b77-8694-9b9503d9743f tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d7175db0-eea4-739f-8ea7-31c5162adc11 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 timestamp=2023-07-11T14:02:56.785Z
2023-07-11T14:02:56.788Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_ssm_parameter.profiles_access_logs, 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:
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
      - .allowed_pattern: planned value cty.StringVal("") for a non-computed attribute
      - .description: planned value cty.StringVal("") for a non-computed attribute
2023-07-11T14:02:56.884Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.service=STS http.response.header.x_amzn_requestid=137ef9aa-4d03-43de-bff5-0c0b0c29cea4 http.response_content_length=497 tf_mux_provider=*proto5server.Server @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.region=eu-west-1 http.duration=654 http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  <GetC***************sult>
    <Arn>arn:aws:sts::123456789:assumed-role***********dSSO_administrator-access_8b77***************hort@redacted.com</Arn>
    <UserId>AROA*************LHAV:redacted@redacted.com</UserId>
    <Account>123456789</Account>
  </Get****************sult>
  <Resp********data>
    <RequestId>137ef9aa-4d03-43de-bff5-0c0b0c29cea4</RequestId>
  </Res*********data>
</Get******************onse>
" http.response.header.date="Tue, 11 Jul 2023 14:02:56 GMT" tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.status_code=200 aws.operation=GetCallerIdentity aws.sdk=aws-sdk-go aws.signing_region=us-east-1 http.response.header.content_type=text/xml tf_data_source_type=aws_caller_identity tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 tf_rpc=ReadDataSource timestamp=2023-07-11T14:02:56.884Z
2023-07-11T14:02:56.884Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Read: tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadDataSource @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:80 @module=sdk.framework tf_data_source_type=aws_caller_identity tf_req_id=3ad336b4-b7a4-5b35-6b8c-f0a0f9e5c6b6 timestamp=2023-07-11T14:02:56.884Z
2023-07-11T14:02:56.885Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.duration=655 http.response.header.date="Tue, 11 Jul 2023 14:02:55 GMT" http.status_code=200 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 http.response_content_length=497 tf_mux_provider=*proto5server.Server @module=aws aws.region=eu-west-1 aws.sdk=aws-sdk-go http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  <GetC***************sult>
    <Arn>arn:aws:sts::123456789:assumed-role***********dSSO_administrator-access_8b77***************hort@redacted.com</Arn>
    <UserId>AROA*************LHAV:redacted@redacted.com</UserId>
    <Account>123456789</Account>
  </Get****************sult>
  <Resp********data>
    <RequestId>dbac1a6c-a61a-4d30-9da7-f3c9f8440027</RequestId>
  </Res*********data>
</Get******************onse>
" aws.signing_region=us-east-1 http.response.header.content_type=text/xml http.response.header.x_amzn_requestid=dbac1a6c-a61a-4d30-9da7-f3c9f8440027 tf_rpc=ReadDataSource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.operation=GetCallerIdentity aws.service=STS tf_data_source_type=aws_caller_identity timestamp=2023-07-11T14:02:56.884Z
2023-07-11T14:02:56.885Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined DataSource Read: tf_data_source_type=aws_caller_identity tf_mux_provider=*proto5server.Server tf_rpc=ReadDataSource @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=6819f3d4-a43b-af04-639a-bca6288684f4 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_readdatasource.go:80 timestamp=2023-07-11T14:02:56.884Z
2023-07-11T14:02:56.885Z [INFO]  ReferenceTransformer: reference not found: "var.unified_data_set_arns"
2023-07-11T14:02:56.886Z [INFO]  ReferenceTransformer: reference not found: "var.unified_data_set_arns"
2023-07-11T14:02:56.886Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" references: []
2023-07-11T14:02:56.887Z [DEBUG] ReferenceTransformer: "aws_quicksight_group.author_group" references: []
2023-07-11T14:02:56.900Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws http.request.header.x_amz_security_token=***** aws.region=eu-west-1 http.flavor=1.1 http.request.body= http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_date=20230711T140256Z net.peer.name=quicksight.eu-west-1.amazonaws.com aws.operation=DescribeDataSet tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 tf_rpc=ReadResource http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset tf_resource_type=aws_quicksight_data_set aws.sdk=aws-sdk-go aws.service=QuickSight http.method=GET tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 timestamp=2023-07-11T14:02:56.900Z
2023-07-11T14:02:56.902Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: tf_mux_provider=*schema.GRPCProviderServer tf_req_id=5e453ad2-dc6b-4daf-ef8b-bd5be74c5abe @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 http.request.body= http.request.header.x_amz_date=20230711T140256Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" @module=aws http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_group http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/namespaces/default/groups/authors aws.operation=DescribeGroup aws.region=eu-west-1 aws.sdk=aws-sdk-go http.flavor=1.1 aws.service=QuickSight http.method=GET http.request.header.x_amz_security_token=***** net.peer.name=quicksight.eu-west-1.amazonaws.com tf_rpc=ReadResource timestamp=2023-07-11T14:02:56.902Z
2023-07-11T14:02:57.319Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.region=eu-west-1 http.duration=417 http.response.header.content_type=application/json http.response.header.date="Tue, 11 Jul 2023 14:02:57 GMT" http.status_code=200 tf_mux_provider=*schema.GRPCProviderServer tf_resource_type=aws_quicksight_group tf_req_id=5e453ad2-dc6b-4daf-ef8b-bd5be74c5abe http.response.body="{"Group":{"Arn":"arn:aws:quicksight:eu-west-1:123456789:grou*************hors","Description":null,"GroupName":"authors","InternalArn":null,"PrincipalId":"group/d-9367***********1d70-8eb0-4e70-90d2-dceac9dea47a"},"RequestId":"dd9338e0-92b5-4c94-a5bf-21736b187cc2"}
" http.response.header.x_amzn_requestid=dd9338e0-92b5-4c94-a5bf-21736b187cc2 aws.sdk=aws-sdk-go tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.service=QuickSight @module=aws aws.operation=DescribeGroup timestamp=2023-07-11T14:02:57.319Z
2023-07-11T14:02:57.321Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for aws_quicksight_group.author_group, 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:
      - .description: planned value cty.StringVal("") for a non-computed attribute
      - .namespace: planned value cty.StringVal("default") for a non-computed attribute
2023-07-11T14:02:58.085Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.x_amzn_requestid=b4e83a14-4f73-40c8-aaec-1c6d11a3e08d http.status_code=200 tf_mux_provider=*schema.GRPCProviderServer aws.operation=DescribeDataSet aws.service=QuickSight http.duration=1184 http.response.header.date="Tue, 11 Jul 2023 14:02:58 GMT" tf_resource_type=aws_quicksight_data_set @module=aws http.response.body="{"DataSet":{"Arn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","ColumnGroups":null,"Colu******************ules":null,"Cons********************ytes":119872,"CreatedTime":1.689000349563E9,"DataSetId":"unified-generated-total-profile-dataset","Data*****************tion":{"Disa*********************urce":false,"Disa******************urce":false},"Data*********ters":null,"FieldFolders":null,"ImportMode":"SPICE","LastUpdatedTime":1.689083846165E9,"LogicalTableMap":{"new-generated-total-example":{"Alias":"New Generated Profile Total","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"week","NewColumnName":"new-week"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"month","NewColumnName":"new-month"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"year","NewColumnName":"new-year"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"type","NewColumnName":"new-type"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"total","NewColumnName":"New Total example"},"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********7491-1def-4963-a6c3-95c7c8e220de","JoinInstruction":null,"PhysicalTableId":null}},"old-generated-total-example":{"Alias":"Old Generated Profile total","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"generated","NewColumnName":"Old Total example"},"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********cb1e-8924-4557-818b-cc62ba03cf49","JoinInstruction":null,"PhysicalTableId":null}},"unified-total-profile-dataset":{"Alias":"Total Profile Dataset","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":{"Proj********umns":["evaluator_type","month","week","year","Old Total example","New Total example"]},"Rena*************tion":null,"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":null,"JoinInstruction":{"Left*************ties":null,"LeftOperand":"old-generated-total-example","OnClause":"{evaluator_type} = {new-type} AND year = {new-year} AND month = {new-month} AND week = {new-week}","Righ**************ties":null,"RightOperand":"new-generated-total-example","Type":"OUTER"},"PhysicalTableId":null}}},"Name":"Unified Generated Total example","OutputColumns":[{"Description":null,"Name":"evaluator_type","SubType":null,"Type":"STRING"},{"Description":null,"Name":"month","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"week","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"year","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"Old Total example","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"New Total example","SubType":null,"Type":"INTEGER"}],"Phys********eMap":{},"RowL*****************aSet":null,"RowL**************************tion":null},"RequestId":"b4e83a14-4f73-40c8-aaec-1c6d11a3e08d"}
[truncated...]" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.region=eu-west-1 aws.sdk=aws-sdk-go http.response.header.content_type=application/json tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 timestamp=2023-07-11T14:02:58.085Z
2023-07-11T14:02:58.085Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: net.peer.name=quicksight.eu-west-1.amazonaws.com @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_date=20230711T140258Z http.request.header.x_amz_security_token=***** @module=aws http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 tf_resource_type=aws_quicksight_data_set tf_rpc=ReadResource aws.operation=DescribeDataSetPermissions aws.region=eu-west-1 aws.service=QuickSight http.request.body= http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset/permissions tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws aws.sdk=aws-sdk-go http.flavor=1.1 http.method=GET timestamp=2023-07-11T14:02:58.085Z
2023-07-11T14:02:58.424Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: @module=aws aws.operation=DescribeDataSetPermissions aws.region=eu-west-1 http.response.header.date="Tue, 11 Jul 2023 14:02:58 GMT" aws.sdk=aws-sdk-go aws.service=QuickSight tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 http.duration=338 http.response.body="{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","DataSetId":"unified-generated-total-profile-dataset","Permissions":[],"Prin****************oles":null,"RequestId":"1899152f-28f0-48d0-ad6c-1d63a716f47e"}
" http.response.header.content_type=application/json http.response.header.x_amzn_requestid=1899152f-28f0-48d0-ad6c-1d63a716f47e http.status_code=200 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_data_set tf_rpc=ReadResource timestamp=2023-07-11T14:02:58.424Z
2023-07-11T14:02:58.425Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.sdk=aws-sdk-go tf_mux_provider=*schema.GRPCProviderServer aws.region=eu-west-1 aws.service=QuickSight http.request.body= http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset/refresh-properties http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" net.peer.name=quicksight.eu-west-1.amazonaws.com tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_data_set aws.operation=DescribeDataSetRefreshProperties http.method=GET http.flavor=1.1 http.request.header.x_amz_date=20230711T140258Z tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 @module=aws timestamp=2023-07-11T14:02:58.424Z
2023-07-11T14:02:58.967Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.x_amzn_errortype=ResourceNotFoundException:http://internal.amazon.com/coral/com.amazonaws.services.quicksight.common/ http.response.header.x_amzn_requestid=18c1d64b-71bc-45c1-b32f-4b1c2ba849fe tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_data_set http.response.body="{"Message":"Dataset refresh properties are not set for this dataset : unified-generated-total-profile-dataset","RequestId":null,"ResourceType":null}
" http.response.header.content_type=application/json tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 @module=aws aws.operation=DescribeDataSetRefreshProperties aws.sdk=aws-sdk-go http.response_content_length=148 http.status_code=404 aws.region=eu-west-1 http.duration=542 http.response.header.date="Tue, 11 Jul 2023 14:02:58 GMT" aws.service=QuickSight tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 tf_rpc=ReadResource timestamp=2023-07-11T14:02:58.967Z
2023-07-11T14:02:58.971Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.region=eu-west-1 http.request.body= http.request.header.x_amz_security_token=***** tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_data_set tf_rpc=ReadResource @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 http.flavor=1.1 http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.url=https://quicksight.eu-west-1.amazonaws.com/resources/arn%3Aaws%3Aquicksight%3Aeu-west-1%3A123456789%3Adataset%2Funified-generated-total-profile-dataset/tags http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" aws.operation=ListTagsForResource aws.sdk=aws-sdk-go http.method=GET http.request.header.x_amz_date=20230711T140258Z net.peer.name=quicksight.eu-west-1.amazonaws.com @module=aws aws.service=QuickSight tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 timestamp=2023-07-11T14:02:58.971Z
2023-07-11T14:02:59.077Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.duration=105 http.response.header.x_amzn_requestid=0c3c19bb-a5f5-4059-91dc-3b1d20e53794 tf_req_id=53d6f5b1-a75d-7746-a3df-a6ada8e11b10 tf_rpc=ReadResource aws.region=eu-west-1 aws.sdk=aws-sdk-go http.response.header.date="Tue, 11 Jul 2023 14:02:59 GMT" http.status_code=200 tf_resource_type=aws_quicksight_data_set @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 @module=aws aws.operation=ListTagsForResource http.response.body="{"RequestId":"0c3c19bb-a5f5-4059-91dc-3b1d20e53794","Tags":[]}
" http.response.header.content_type=application/json tf_mux_provider=*schema.GRPCProviderServer aws.service=QuickSight tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:02:59.076Z
2023-07-11T14:02:59.096Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for module.example.aws_quicksight_data_set.unified_generated_profile_data_set, 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:
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
2023-07-11T14:02:59.099Z [INFO]  ReferenceTransformer: reference not found: "local.example_response_columns"
2023-07-11T14:02:59.099Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" references: []
2023-07-11T14:02:59.369Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 @module=aws http.flavor=1.1 http.method=GET http.request.header.x_amz_date=20230711T140259Z net.peer.name=quicksight.eu-west-1.amazonaws.com aws.operation=DescribeAnalysis aws.sdk=aws-sdk-go http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/analyses/generated-total-example-analysis aws.service=QuickSight http.request.body= http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************NI7G********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" aws.region=eu-west-1 http.request.header.x_amz_security_token=***** http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=09a42fd5-e053-26dc-7024-9ff1762901db tf_resource_type=aws_quicksight_analysis tf_rpc=ReadResource timestamp=2023-07-11T14:02:59.369Z
2023-07-11T14:02:59.647Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: @module=aws aws.service=QuickSight http.response.header.date="Tue, 11 Jul 2023 14:02:59 GMT" tf_resource_type=aws_quicksight_analysis tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ReadResource aws.operation=DescribeAnalysis aws.region=eu-west-1 http.response.header.content_type=application/json tf_req_id=09a42fd5-e053-26dc-7024-9ff1762901db @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.sdk=aws-sdk-go http.response.body="{"Message":"Analysis arn:aws:quicksight:eu-west-1:123456789:anal**********ated-total-example-analysis is not found","RequestId":"537d7968-77c3-4a59-bf3b-03490b876327","ResourceType":null}
" http.response.header.x_amzn_errortype=ResourceNotFoundException http.response.header.x_amzn_requestid=537d7968-77c3-4a59-bf3b-03490b876327 http.duration=277 http.status_code=404 timestamp=2023-07-11T14:02:59.647Z
2023-07-11T14:02:59.648Z [WARN]  provider.terraform-provider-aws_v5.5.0_x5: [WARN] QuickSight Analysis (123456789,generated-total-example-analysis) not found, removing from state
2023-07-11T14:02:59.691Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an unexpected new value for module.example.aws_quicksight_analysis.generated_total_example_analysis during refresh.
      - Root resource was present, but now absent
2023-07-11T14:03:00.578Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for module.example.aws_quicksight_analysis.generated_total_example_analysis, 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:
      - .recovery_window_in_days: planned value cty.NumberIntVal(30) for a non-computed attribute
      - .parameters: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
2023-07-11T14:03:00.602Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:03:00.614Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=88
2023-07-11T14:03:00.615Z [DEBUG] provider: plugin exited
2023-07-11T14:03:00.629Z [DEBUG] building apply graph to check for errors
2023-07-11T14:03:00.630Z [DEBUG] Resource state not found for node "module.example.aws_quicksight_analysis.generated_total_example_analysis", instance module.example.aws_quicksight_analysis.generated_total_example_analysis
2023-07-11T14:03:00.630Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.631Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.631Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.632Z [DEBUG] ProviderTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.632Z [DEBUG] ProviderTransformer: "data.aws_caller_identity.current (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.632Z [DEBUG] ProviderTransformer: "module.example.data.aws_caller_identity.current (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.633Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.633Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.633Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.634Z [DEBUG] ProviderTransformer: "aws_quicksight_group.author_group (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.634Z [DEBUG] pruning unused provider["registry.terraform.io/datadog/datadog"]
2023-07-11T14:03:00.634Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/cloudinit"]
2023-07-11T14:03:00.634Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/tls"]
2023-07-11T14:03:00.634Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/http"]
2023-07-11T14:03:00.635Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/archive"]
2023-07-11T14:03:00.635Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/random"]
2023-07-11T14:03:00.635Z [DEBUG] ReferenceTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" references: []
2023-07-11T14:03:00.636Z [DEBUG] ReferenceTransformer: "data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:03:00.636Z [DEBUG] ReferenceTransformer: "module.example.data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:03:00.636Z [DEBUG] ReferenceTransformer: "local.region (expand)" references: []
2023-07-11T14:03:00.637Z [DEBUG] ReferenceTransformer: "module.example.local.example_response_columns (expand)" references: []
2023-07-11T14:03:00.637Z [DEBUG] ReferenceTransformer: "aws_quicksight_group.author_group (expand)" references: []
2023-07-11T14:03:00.637Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" references: []
2023-07-11T14:03:00.637Z [DEBUG] ReferenceTransformer: "module.example.var.unified_data_set_arns (expand)" references: []
2023-07-11T14:03:00.637Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" references: [module.example.data.aws_caller_identity.current (expand) module.example.var.unified_data_set_arns (expand) module.example.var.unified_data_set_arns (expand)]
2023-07-11T14:03:00.638Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" references: [module.example.data.aws_caller_identity.current (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.local.example_response_columns (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set]
2023-07-11T14:03:00.638Z [DEBUG] ReferenceTransformer: "module.example (expand)" references: []
2023-07-11T14:03:00.638Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" references: []
2023-07-11T14:03:00.638Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" references: []
2023-07-11T14:03:00.639Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" references: []
2023-07-11T14:03:00.639Z [DEBUG] ReferenceTransformer: "module.example (close)" references: []
2023-07-11T14:03:00.639Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [local.region (expand)]
2023-07-11T14:03:00.639Z [DEBUG] ReferenceTransformer: "local.environment_name (expand)" references: [data.aws_caller_identity.current (expand)]
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: local.environment_name (expand) is no longer needed, removing
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: data.aws_caller_identity.current (expand) is no longer needed, removing
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: aws_quicksight_group.author_group (expand) is no longer needed, removing
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: aws_ssm_parameter.profiles_access_logs (expand) is no longer needed, removing
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand) is no longer needed, removing
2023-07-11T14:03:00.640Z [DEBUG] pruneUnusedNodes: data.aws_iam_policy_document.instance_assume_role_policy (expand) is no longer needed, removing
2023-07-11T14:03:00.695Z [INFO]  backend/local: apply calling Apply
2023-07-11T14:03:00.696Z [DEBUG] Building and walking apply graph for NormalMode plan
2023-07-11T14:03:00.696Z [DEBUG] Resource state not found for node "module.example.aws_quicksight_analysis.generated_total_example_analysis", instance module.example.aws_quicksight_analysis.generated_total_example_analysis
2023-07-11T14:03:00.697Z [DEBUG] ProviderTransformer: "aws_quicksight_group.author_group (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.697Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.698Z [DEBUG] ProviderTransformer: "module.example.data.aws_caller_identity.current (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.698Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.698Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.699Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.699Z [DEBUG] ProviderTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.699Z [DEBUG] ProviderTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.699Z [DEBUG] ProviderTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.700Z [DEBUG] ProviderTransformer: "data.aws_caller_identity.current (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/hashicorp/aws"]
2023-07-11T14:03:00.700Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/random"]
2023-07-11T14:03:00.700Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/cloudinit"]
2023-07-11T14:03:00.701Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/archive"]
2023-07-11T14:03:00.701Z [DEBUG] pruning unused provider["registry.terraform.io/datadog/datadog"]
2023-07-11T14:03:00.701Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/tls"]
2023-07-11T14:03:00.701Z [DEBUG] pruning unused provider["registry.terraform.io/hashicorp/http"]
2023-07-11T14:03:00.702Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set" references: [module.example.data.aws_caller_identity.current (expand) module.example.var.unified_data_set_arns (expand) module.example.var.unified_data_set_arns (expand)]
2023-07-11T14:03:00.702Z [DEBUG] ReferenceTransformer: "module.example (expand)" references: []
2023-07-11T14:03:00.702Z [DEBUG] ReferenceTransformer: "module.example (close)" references: []
2023-07-11T14:03:00.702Z [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/aws\"]" references: [local.region (expand)]
2023-07-11T14:03:00.702Z [DEBUG] ReferenceTransformer: "data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:03:00.703Z [DEBUG] ReferenceTransformer: "module.example.data.aws_caller_identity.current (expand)" references: []
2023-07-11T14:03:00.703Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis (expand)" references: []
2023-07-11T14:03:00.703Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_analysis.generated_total_example_analysis" references: [module.example.data.aws_caller_identity.current (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand) module.example.local.example_response_columns (expand) module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)]
2023-07-11T14:03:00.703Z [DEBUG] ReferenceTransformer: "aws_quicksight_group.author_group (expand)" references: []
2023-07-11T14:03:00.703Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.instance_assume_role_policy (expand)" references: []
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "module.example.aws_quicksight_data_set.unified_generated_profile_data_set (expand)" references: []
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "local.environment_name (expand)" references: [data.aws_caller_identity.current (expand)]
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "aws_ssm_parameter.profiles_access_logs (expand)" references: []
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand)" references: []
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "module.example.local.example_response_columns (expand)" references: []
2023-07-11T14:03:00.704Z [DEBUG] ReferenceTransformer: "module.example.var.unified_data_set_arns (expand)" references: []
2023-07-11T14:03:00.705Z [DEBUG] ReferenceTransformer: "local.region (expand)" references: []
2023-07-11T14:03:00.705Z [DEBUG] pruneUnusedNodes: data.aws_iam_policy_document.instance_assume_role_policy (expand) is no longer needed, removing
2023-07-11T14:03:00.705Z [DEBUG] pruneUnusedNodes: aws_quicksight_group.author_group (expand) is no longer needed, removing
2023-07-11T14:03:00.705Z [DEBUG] pruneUnusedNodes: data.aws_iam_policy_document.ro_build_artifacts_iam_policy_document (expand) is no longer needed, removing
2023-07-11T14:03:00.706Z [DEBUG] pruneUnusedNodes: local.environment_name (expand) is no longer needed, removing
2023-07-11T14:03:00.706Z [DEBUG] pruneUnusedNodes: aws_ssm_parameter.profiles_access_logs (expand) is no longer needed, removing
2023-07-11T14:03:00.706Z [DEBUG] pruneUnusedNodes: data.aws_caller_identity.current (expand) is no longer needed, removing
2023-07-11T14:03:00.706Z [DEBUG] Starting graph walk: walkApply
2023-07-11T14:03:00.713Z [DEBUG] created provider logger: level=debug
2023-07-11T14:03:00.714Z [INFO]  provider: configuring client automatic mTLS
2023-07-11T14:03:00.719Z [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5]
2023-07-11T14:03:00.726Z [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=97
2023-07-11T14:03:00.726Z [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5
2023-07-11T14:03:02.515Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: configuring server automatic mTLS: timestamp=2023-07-11T14:03:02.515Z
2023-07-11T14:03:02.535Z [DEBUG] provider: using plugin: version=5
2023-07-11T14:03:02.535Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: plugin address: address=/tmp/plugin2932227982 network=unix timestamp=2023-07-11T14:03:02.535Z
2023-07-11T14:03:02.866Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @module=sdk.framework tf_attribute_path=allowed_account_ids tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:03:02.866Z
2023-07-11T14:03:02.866Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_attribute_path=allowed_account_ids tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.866Z
2023-07-11T14:03:02.868Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @module=sdk.framework timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.868Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_attribute_path=shared_config_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.868Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_rpc=PrepareProviderConfig tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.868Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 @module=sdk.framework tf_attribute_path=forbidden_account_ids tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_attribute_path=max_retries tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @module=sdk.framework timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_attribute_path=max_retries tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_attribute_path=shared_credentials_files tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.869Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @module=sdk.framework tf_attribute_path=shared_credentials_files tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_mux_provider=*proto5server.Server @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: tf_mux_provider=*proto5server.Server tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 @module=sdk.framework description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.868Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 @module=sdk.framework tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:03:02.869Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.870Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @module=sdk.framework @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_mux_provider=*proto5server.Server timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: tf_rpc=PrepareProviderConfig tf_mux_provider=*proto5server.Server tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 description="list must contain at most 1 elements" tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 @module=sdk.framework timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws @module=sdk.framework tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.871Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 tf_mux_provider=*proto5server.Server tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 description="list must contain at most 1 elements" timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @module=sdk.framework description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Type Validate: @module=sdk.framework tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:81 tf_rpc=PrepareProviderConfig timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Type Validate: tf_mux_provider=*proto5server.Server tf_rpc=PrepareProviderConfig @module=sdk.framework tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwschemadata/data_value.go:83 timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined validator.List: @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:217 description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 tf_rpc=PrepareProviderConfig @module=sdk.framework timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.872Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined validator.List: tf_rpc=PrepareProviderConfig @module=sdk.framework description="list must contain at most 1 elements" tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=16ef8a76-8fbe-ed32-6ab3-72e425d67384 @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/block_validation.go:227 timestamp=2023-07-11T14:03:02.870Z
2023-07-11T14:03:02.884Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Configuring Terraform AWS Provider: tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:104 @module=aws tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:02.877Z
2023-07-11T14:03:02.888Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Resolving credentials provider: @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:02.888Z
2023-07-11T14:03:02.897Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Using profile: @module=aws.aws-base tf_aws.profile.source=provider tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_aws.profile=developer timestamp=2023-07-11T14:03:02.897Z
2023-07-11T14:03:02.898Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading profile: tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base tf_aws.profile=developer tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:03:02.897Z
2023-07-11T14:03:02.900Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Setting profile: tf_rpc=ConfigureProvider tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base tf_aws.profile=developer tf_aws.profile.source=provider tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf timestamp=2023-07-11T14:03:02.900Z
2023-07-11T14:03:02.900Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading configuration: tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:03:02.900Z
2023-07-11T14:03:02.906Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving credentials: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf timestamp=2023-07-11T14:03:02.906Z
2023-07-11T14:03:02.917Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: @module=aws.aws-base aws.operation=GetRoleCredentials aws.service=SSO http.request.header.amz_sdk_request="attempt=1; max=3" net.peer.name=portal.sso.us-east-1.amazonaws.com tf_provider_addr=registry.terraform.io/hashicorp/aws aws.sdk=aws-sdk-go-v2 http.request.header.x_amz_sso_bearer_token=aoay74SWFiOtFdMjDejFbtY2e6gguSalz-2PDHcG4L7HV0gn7wtmB2PXsirHcHvR0Cpkk8-D79DUUFOafyhbXi9ZgAkc0:MGQCMBQF/dQWJaoQmFpRzK0I5crcTYBxK/xDW0kBFuWVgxFQVBNGe2XoEXgcYOrYHqU1nAIwb2JYcTI2sCde3H6zFECa9gVzSbFqDpzVKbpk8gvKPQL9LwA197qyiovavDkrGkzD http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sso/1.12.12" http.request.body= http.request.header.amz_sdk_invocation_id=8e74e605-fb53-4144-8263-681c215230a8 http.url=https://portal.sso.us-east-1.amazonaws.com/federation/credentials?account_id=123456789&role_name=administrator-access tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.region=us-east-1 http.method=GET tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:02.917Z
2023-07-11T14:03:07.852Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.operation=GetRoleCredentials aws.region=us-east-1 http.duration=4934 http.response.body="{"roleCredentials":{"accessKeyId":"ASIA************2EBO","secretAccessKey":"qdOu********************************bEx8","sessionToken":"IQoJ****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************oMg=","expiration":1689112986000}}
" http.response.header.date="Tue, 11 Jul 2023 14:03:07 GMT" http.status_code=200 http.response_content_length=1064 tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @module=aws.aws-base aws.sdk=aws-sdk-go-v2 http.response.header.access_control_expose_headers=[RequestId, x-amzn-RequestId] http.response.header.content_type=application/json http.response.header.server="AWS SSO" @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.service=SSO http.response.header.cache_control=no-cache http.response.header.requestid=a6466ee5-1c40-4d20-b561-9dc51a3f168c http.response.header.x_amzn_requestid=a6466ee5-1c40-4d20-b561-9dc51a3f168c tf_mux_provider=*schema.GRPCProviderServer timestamp=2023-07-11T14:03:07.852Z
2023-07-11T14:03:07.853Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved credentials: tf_aws.credentials_source=SSOProvider tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:07.853Z
2023-07-11T14:03:07.854Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Loading configuration: tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider @module=aws.aws-base timestamp=2023-07-11T14:03:07.853Z
2023-07-11T14:03:07.857Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving caller identity from STS: tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf timestamp=2023-07-11T14:03:07.857Z
2023-07-11T14:03:07.858Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.region=eu-west-1 http.request.header.content_type=application/x-www-form-urlencoded http.url=https://sts.eu-west-1.amazonaws.com/ net.peer.name=sts.eu-west-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.sdk=aws-sdk-go-v2 aws.service=STS http.request.header.amz_sdk_invocation_id=783a79cb-6961-4a80-bd61-faa8cf59e54a tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider aws.operation=GetCallerIdentity http.method=POST http.request.header.amz_sdk_request="attempt=1; max=25" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/sts/aws4_request, Sign*********=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** http.request_content_length=43 tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf http.request.body="Acti****************tity&Version=2011-06-15
" http.request.header.x_amz_date=20230711T140307Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sts/1.19.2" @module=aws.aws-base timestamp=2023-07-11T14:03:07.858Z
2023-07-11T14:03:08.164Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.operation=GetCallerIdentity aws.sdk=aws-sdk-go-v2 aws.service=STS http.response.header.x_amzn_requestid=ffe6b25a-41a3-4bb2-9c32-5628e0f9deee tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.region=eu-west-1 http.response.header.date="Tue, 11 Jul 2023 14:03:07 GMT" tf_mux_provider=*schema.GRPCProviderServer http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  <GetC***************sult>
    <Arn>arn:aws:sts::123456789:assumed-role***********dSSO_administrator-access_8b77***************hort@redacted.com</Arn>
    <UserId>AROA*************LHAV:redacted@redacted.com</UserId>
    <Account>123456789</Account>
  </Get****************sult>
  <Resp********data>
    <RequestId>ffe6b25a-41a3-4bb2-9c32-5628e0f9deee</RequestId>
  </Res*********data>
</Get******************onse>
" http.response.header.content_type=text/xml http.response_content_length=497 http.status_code=200 tf_provider_addr=registry.terraform.io/hashicorp/aws @module=aws.aws-base http.duration=305 tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf timestamp=2023-07-11T14:03:08.164Z
2023-07-11T14:03:08.165Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved caller identity from STS: tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:08.164Z
2023-07-11T14:03:08.165Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Creating AWS SDK v1 session: @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:117 tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider @module=aws tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:03:08.164Z
2023-07-11T14:03:08.166Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving AWS account details: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/terraform-provider-aws/internal/conns/config.go:123 @module=aws tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:08.165Z
2023-07-11T14:03:08.166Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Retrieving caller identity from STS: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @module=aws.aws-base tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 timestamp=2023-07-11T14:03:08.165Z
2023-07-11T14:03:08.167Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.url=https://sts.eu-west-1.amazonaws.com/ net.peer.name=sts.eu-west-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 aws.sdk=aws-sdk-go-v2 http.request.header.amz_sdk_request="attempt=1; max=25" http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go-v2/1.18.1 os/linux lang/go/1.20.5 md/GOOS/linux md/GOARCH/amd64 api/sts/1.19.2" tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf http.method=POST http.request.body="Acti****************tity&Version=2011-06-15
" http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/sts/aws4_request, Sign*********=amz-sdk-invocation-id;amz-sdk-request;content-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.content_type=application/x-www-form-urlencoded aws.operation=GetCallerIdentity http.request_content_length=43 tf_provider_addr=registry.terraform.io/hashicorp/aws aws.service=STS http.request.header.amz_sdk_invocation_id=fbcbe77c-8974-4638-a45b-f883cba5f5cd http.request.header.x_amz_date=20230711T140308Z http.request.header.x_amz_security_token=***** @module=aws.aws-base aws.region=eu-west-1 tf_rpc=ConfigureProvider timestamp=2023-07-11T14:03:08.166Z
2023-07-11T14:03:08.226Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.service=STS http.duration=60 http.response.body="<GetC*****************onse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  <GetC***************sult>
    <Arn>arn:aws:sts::123456789:assumed-role***********dSSO_administrator-access_8b77***************hort@redacted.com</Arn>
    <UserId>AROA*************LHAV:redacted@redacted.com</UserId>
    <Account>123456789</Account>
  </Get****************sult>
  <Resp********data>
    <RequestId>ab4a98c5-a272-4c8b-b8ed-288978bde641</RequestId>
  </Res*********data>
</Get******************onse>
" http.response_content_length=497 tf_provider_addr=registry.terraform.io/hashicorp/aws aws.sdk=aws-sdk-go-v2 aws.operation=GetCallerIdentity aws.region=eu-west-1 http.response.header.content_type=text/xml http.response.header.date="Tue, 11 Jul 2023 14:03:07 GMT" tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:41 http.status_code=200 tf_rpc=ConfigureProvider @module=aws.aws-base http.response.header.x_amzn_requestid=ab4a98c5-a272-4c8b-b8ed-288978bde641 timestamp=2023-07-11T14:03:08.226Z
2023-07-11T14:03:08.227Z [INFO]  provider.terraform-provider-aws_v5.5.0_x5: Retrieved caller identity from STS: tf_mux_provider=*schema.GRPCProviderServer tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf tf_rpc=ConfigureProvider @caller=github.com/hashicorp/aws-sdk-go-base/v2@v2.0.0-beta.30/logging/logger.go:33 @module=aws.aws-base tf_provider_addr=registry.terraform.io/hashicorp/aws timestamp=2023-07-11T14:03:08.226Z
2023-07-11T14:03:08.227Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Calling provider defined Provider Configure: tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_configureprovider.go:15 tf_mux_provider=*proto5server.Server tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ConfigureProvider @module=sdk.framework timestamp=2023-07-11T14:03:08.227Z
2023-07-11T14:03:08.228Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: Called provider defined Provider Configure: tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=d8c73189-c804-3a56-b4f6-5bc3e4f705bf @module=sdk.framework tf_mux_provider=*proto5server.Server tf_rpc=ConfigureProvider @caller=github.com/hashicorp/terraform-plugin-framework@v1.3.1/internal/fwserver/server_configureprovider.go:23 timestamp=2023-07-11T14:03:08.227Z
2023-07-11T14:03:08.272Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for module.example.aws_quicksight_data_set.unified_generated_profile_data_set, 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:
      - .tags: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
2023-07-11T14:03:08.274Z [INFO]  Starting apply for module.example.aws_quicksight_data_set.unified_generated_profile_data_set
2023-07-11T14:03:08.276Z [DEBUG] module.example.aws_quicksight_data_set.unified_generated_profile_data_set: applying the planned Update change
2023-07-11T14:03:08.284Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.left_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.284Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.right_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.285Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.create_columns_operation" from ComputedKeys
2023-07-11T14:03:08.285Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.filter_operation" from ComputedKeys
2023-07-11T14:03:08.285Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.rename_column_operation" from ComputedKeys
2023-07-11T14:03:08.285Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.tag_column_operation" from ComputedKeys
2023-07-11T14:03:08.286Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.untag_column_operation" from ComputedKeys
2023-07-11T14:03:08.286Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.cast_column_type_operation" from ComputedKeys
2023-07-11T14:03:08.286Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.right_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.287Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.left_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.287Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.left_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.287Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.right_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.287Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.right_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.288Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.source.0.join_instruction.0.left_join_key_properties" from ComputedKeys
2023-07-11T14:03:08.288Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.rename_column_operation" from ComputedKeys
2023-07-11T14:03:08.288Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.tag_column_operation" from ComputedKeys
2023-07-11T14:03:08.289Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.untag_column_operation" from ComputedKeys
2023-07-11T14:03:08.289Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.cast_column_type_operation" from ComputedKeys
2023-07-11T14:03:08.289Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.create_columns_operation" from ComputedKeys
2023-07-11T14:03:08.290Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.filter_operation" from ComputedKeys
2023-07-11T14:03:08.290Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.filter_operation" from ComputedKeys
2023-07-11T14:03:08.290Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.rename_column_operation" from ComputedKeys
2023-07-11T14:03:08.290Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.tag_column_operation" from ComputedKeys
2023-07-11T14:03:08.290Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.untag_column_operation" from ComputedKeys
2023-07-11T14:03:08.291Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.cast_column_type_operation" from ComputedKeys
2023-07-11T14:03:08.291Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "logical_table_map.2.data_transforms.0.create_columns_operation" from ComputedKeys
2023-07-11T14:03:08.324Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.service=QuickSight http.method=PUT http.request.body="{"Data*****************tion":{"Disa*********************urce":false,"Disa******************urce":false},"ImportMode":"SPICE","LogicalTableMap":{"new-generated-total-example":{"Alias":"New Generated Profile Total","DataTransforms":[{"Rena*************tion":{"ColumnName":"week","NewColumnName":"new-week"}},{"Rena*************tion":{"ColumnName":"month","NewColumnName":"new-month"}},{"Rena*************tion":{"ColumnName":"year","NewColumnName":"new-year"}},{"Rena*************tion":{"ColumnName":"type","NewColumnName":"new-type"}},{"Rena*************tion":{"ColumnName":"total","NewColumnName":"New Total example"}}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********7491-1def-4963-a6c3-95c7c8e220de"}},"old-generated-total-example":{"Alias":"Old Generated Profile total","DataTransforms":[{"Rena*************tion":{"ColumnName":"generated","NewColumnName":"Old Total example"}}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********cb1e-8924-4557-818b-cc62ba03cf49"}},"unified-total-profile-dataset":{"Alias":"Total Profile Dataset","DataTransforms":[{"Proj********tion":{"Proj********umns":["evaluator_type","month","week","year","Old Total example","New Total example"]}}],"Source":{"JoinInstruction":{"LeftOperand":"old-generated-total-example","OnClause":"{evaluator_type} = {new-type} AND {year} = {new-year} AND {month} = {new-month} AND {week} = {new-week}","RightOperand":"new-generated-total-example","Type":"OUTER"}}}},"Name":"Unified Generated Total example","Phys********eMap":{}}
[truncated...]" net.peer.name=quicksight.eu-west-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer aws.region=eu-west-1 aws.sdk=aws-sdk-go http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.content_type=application/json http.request.header.x_amz_date=20230711T140308Z http.request.header.x_amz_security_token=***** http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 tf_rpc=ApplyResourceChange @module=aws aws.operation=UpdateDataSet http.flavor=1.1 http.request_content_length=1548 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_resource_type=aws_quicksight_data_set timestamp=2023-07-11T14:03:08.323Z
2023-07-11T14:03:09.607Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.body="{"Arn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","DataSetId":"unified-generated-total-profile-dataset","IngestionArn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-data******************48fe-e18a-4796-8bfa-956168585709","IngestionId":"510548fe-e18a-4796-8bfa-956168585709","RequestId":"8de95898-9cfa-46a6-8489-f92136d75851"}
" http.response.header.content_type=application/json tf_resource_type=aws_quicksight_data_set tf_rpc=ApplyResourceChange aws.sdk=aws-sdk-go aws.service=QuickSight aws.region=eu-west-1 http.duration=1282 http.response.header.date="Tue, 11 Jul 2023 14:03:09 GMT" http.response.header.x_amzn_requestid=8de95898-9cfa-46a6-8489-f92136d75851 tf_mux_provider=*schema.GRPCProviderServer tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 @module=aws tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.operation=UpdateDataSet http.status_code=200 timestamp=2023-07-11T14:03:09.607Z
2023-07-11T14:03:09.611Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.operation=DescribeDataSet http.flavor=1.1 net.peer.name=quicksight.eu-west-1.amazonaws.com tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 tf_resource_type=aws_quicksight_data_set @module=aws aws.region=eu-west-1 aws.sdk=aws-sdk-go http.method=GET http.request.header.x_amz_security_token=***** http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 http.request.header.x_amz_date=20230711T140309Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ApplyResourceChange aws.service=QuickSight http.request.body= http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" tf_mux_provider=*schema.GRPCProviderServer timestamp=2023-07-11T14:03:09.611Z
2023-07-11T14:03:10.175Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.service=QuickSight http.response.header.x_amzn_requestid=ce0f0a18-adbb-4be7-8f5b-a24e3c3be3aa tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 tf_rpc=ApplyResourceChange aws.operation=DescribeDataSet aws.region=eu-west-1 aws.sdk=aws-sdk-go http.status_code=200 tf_resource_type=aws_quicksight_data_set @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 @module=aws http.response.header.date="Tue, 11 Jul 2023 14:03:10 GMT" http.duration=563 http.response.body="{"DataSet":{"Arn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","ColumnGroups":null,"Colu******************ules":null,"Cons********************ytes":0,"CreatedTime":1.689000349563E9,"DataSetId":"unified-generated-total-profile-dataset","Data*****************tion":{"Disa*********************urce":false,"Disa******************urce":false},"Data*********ters":null,"FieldFolders":null,"ImportMode":"SPICE","LastUpdatedTime":1.689084189105E9,"LogicalTableMap":{"new-generated-total-example":{"Alias":"New Generated Profile Total","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"week","NewColumnName":"new-week"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"month","NewColumnName":"new-month"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"year","NewColumnName":"new-year"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"type","NewColumnName":"new-type"},"TagC**********tion":null,"Unta************tion":null},{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"total","NewColumnName":"New Total example"},"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********7491-1def-4963-a6c3-95c7c8e220de","JoinInstruction":null,"PhysicalTableId":null}},"old-generated-total-example":{"Alias":"Old Generated Profile total","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":null,"Rena*************tion":{"ColumnName":"generated","NewColumnName":"Old Total example"},"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:data********cb1e-8924-4557-818b-cc62ba03cf49","JoinInstruction":null,"PhysicalTableId":null}},"unified-total-profile-dataset":{"Alias":"Total Profile Dataset","DataTransforms":[{"Cast***************tion":null,"Crea**************tion":null,"FilterOperation":null,"Over*************************tion":null,"Proj********tion":{"Proj********umns":["evaluator_type","month","week","year","Old Total example","New Total example"]},"Rena*************tion":null,"TagC**********tion":null,"Unta************tion":null}],"Source":{"DataSetArn":null,"JoinInstruction":{"Left*************ties":null,"LeftOperand":"old-generated-total-example","OnClause":"{evaluator_type} = {new-type} AND year = {new-year} AND month = {new-month} AND week = {new-week}","Righ**************ties":null,"RightOperand":"new-generated-total-example","Type":"OUTER"},"PhysicalTableId":null}}},"Name":"Unified Generated Total example","OutputColumns":[{"Description":null,"Name":"evaluator_type","SubType":null,"Type":"STRING"},{"Description":null,"Name":"month","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"week","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"year","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"Old Total example","SubType":null,"Type":"INTEGER"},{"Description":null,"Name":"New Total example","SubType":null,"Type":"INTEGER"}],"Phys********eMap":{},"RowL*****************aSet":null,"RowL**************************tion":null},"RequestId":"ce0f0a18-adbb-4be7-8f5b-a24e3c3be3aa"}
[truncated...]" http.response.header.content_type=application/json timestamp=2023-07-11T14:03:10.175Z
2023-07-11T14:03:10.175Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: aws.region=eu-west-1 http.method=GET tf_resource_type=aws_quicksight_data_set aws.operation=DescribeDataSetPermissions aws.sdk=aws-sdk-go http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 @module=aws tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ApplyResourceChange http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset/permissions net.peer.name=quicksight.eu-west-1.amazonaws.com tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 http.request.body= http.request.header.x_amz_date=20230711T140310Z http.flavor=1.1 aws.service=QuickSight timestamp=2023-07-11T14:03:10.175Z
2023-07-11T14:03:10.734Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.x_amzn_requestid=ca04e5bf-a433-4f8f-b24d-649d2fb8e3e6 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.sdk=aws-sdk-go http.response.header.content_type=application/json http.duration=558 tf_resource_type=aws_quicksight_data_set @module=aws http.response.header.date="Tue, 11 Jul 2023 14:03:10 GMT" tf_mux_provider=*schema.GRPCProviderServer aws.operation=DescribeDataSetPermissions aws.region=eu-west-1 tf_rpc=ApplyResourceChange aws.service=QuickSight http.response.body="{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","DataSetId":"unified-generated-total-profile-dataset","Permissions":[],"Prin****************oles":null,"RequestId":"ca04e5bf-a433-4f8f-b24d-649d2fb8e3e6"}
" http.status_code=200 timestamp=2023-07-11T14:03:10.734Z
2023-07-11T14:03:10.735Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.request.header.x_amz_date=20230711T140310Z http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_rpc=ApplyResourceChange @module=aws aws.region=eu-west-1 aws.sdk=aws-sdk-go http.flavor=1.1 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_mux_provider=*schema.GRPCProviderServer @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.operation=DescribeDataSetRefreshProperties aws.service=QuickSight http.method=GET http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/data-sets/unified-generated-total-profile-dataset/refresh-properties tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 tf_resource_type=aws_quicksight_data_set http.request.body= net.peer.name=quicksight.eu-west-1.amazonaws.com timestamp=2023-07-11T14:03:10.734Z
2023-07-11T14:03:11.170Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: @module=aws tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 tf_resource_type=aws_quicksight_data_set aws.region=eu-west-1 aws.service=QuickSight http.response.body="{"Message":"Dataset refresh properties are not set for this dataset : unified-generated-total-profile-dataset","RequestId":null,"ResourceType":null}
" http.response.header.content_type=application/json @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 aws.operation=DescribeDataSetRefreshProperties tf_provider_addr=registry.terraform.io/hashicorp/aws http.response_content_length=148 http.status_code=404 aws.sdk=aws-sdk-go http.duration=434 http.response.header.date="Tue, 11 Jul 2023 14:03:11 GMT" http.response.header.x_amzn_errortype=ResourceNotFoundException:http://internal.amazon.com/coral/com.amazonaws.services.quicksight.common/ http.response.header.x_amzn_requestid=987ee82f-06ab-4892-8041-a0c94a7eb859 tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ApplyResourceChange timestamp=2023-07-11T14:03:11.169Z
2023-07-11T14:03:11.171Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: @module=aws http.flavor=1.1 net.peer.name=quicksight.eu-west-1.amazonaws.com tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.service=QuickSight http.method=GET http.request.body= tf_resource_type=aws_quicksight_data_set http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" tf_rpc=ApplyResourceChange aws.operation=ListTagsForResource http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign**********host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** http.url=https://quicksight.eu-west-1.amazonaws.com/resources/arn%3Aaws%3Aquicksight%3Aeu-west-1%3A123456789%3Adataset%2Funified-generated-total-profile-dataset/tags aws.region=eu-west-1 aws.sdk=aws-sdk-go http.request.header.x_amz_date=20230711T140311Z tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 timestamp=2023-07-11T14:03:11.171Z
2023-07-11T14:03:11.314Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: aws.region=eu-west-1 aws.sdk=aws-sdk-go @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 @module=aws http.response.header.content_type=application/json tf_resource_type=aws_quicksight_data_set http.response.header.x_amzn_requestid=d9e87b9c-30c6-4c0d-b1d2-aa558f34c259 http.status_code=200 tf_mux_provider=*schema.GRPCProviderServer tf_provider_addr=registry.terraform.io/hashicorp/aws tf_rpc=ApplyResourceChange http.response.header.date="Tue, 11 Jul 2023 14:03:11 GMT" aws.operation=ListTagsForResource aws.service=QuickSight http.duration=142 http.response.body="{"RequestId":"d9e87b9c-30c6-4c0d-b1d2-aa558f34c259","Tags":[]}
" tf_req_id=984b8efa-4f03-4619-86cd-fa21d7c43de8 timestamp=2023-07-11T14:03:11.313Z
2023-07-11T14:03:11.317Z [WARN]  Provider "provider[\"registry.terraform.io/hashicorp/aws\"]" produced an unexpected new value for module.example.aws_quicksight_data_set.unified_generated_profile_data_set, 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:
      - .logical_table_map: planned set element cty.ObjectVal(map[string]cty.Value{"alias":cty.StringVal("Total Profile Dataset"), "data_transforms":cty.ListVal([]cty.Value{cty.ObjectVal(map[string]cty.Value{"cast_column_type_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"column_name":cty.String, "format":cty.String, "new_column_type":cty.String}))), "create_columns_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"columns":cty.List(cty.Object(map[string]cty.Type{"column_id":cty.String, "column_name":cty.String, "expression":cty.String}))}))), "filter_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"condition_expression":cty.String}))), "project_operation":cty.ListVal([]cty.Value{cty.ObjectVal(map[string]cty.Value{"projected_columns":cty.ListVal([]cty.Value{cty.StringVal("evaluator_type"), cty.StringVal("month"), cty.StringVal("week"), cty.StringVal("year"), cty.StringVal("Old Total example"), cty.StringVal("New Total example")})})}), "rename_column_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"column_name":cty.String, "new_column_name":cty.String}))), "tag_column_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"column_name":cty.String, "tags":cty.List(cty.Object(map[string]cty.Type{"column_description":cty.List(cty.Object(map[string]cty.Type{"text":cty.String})), "column_geographic_role":cty.String}))}))), "untag_column_operation":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"column_name":cty.String, "tag_names":cty.List(cty.String)})))})}), "logical_table_map_id":cty.StringVal("unified-total-profile-dataset"), "source":cty.ListVal([]cty.Value{cty.ObjectVal(map[string]cty.Value{"data_set_arn":cty.UnknownVal(cty.String), "join_instruction":cty.ListVal([]cty.Value{cty.ObjectVal(map[string]cty.Value{"left_join_key_properties":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"unique_key":cty.Bool}))), "left_operand":cty.StringVal("old-generated-total-example"), "on_clause":cty.StringVal("{evaluator_type} = {new-type} AND {year} = {new-year} AND {month} = {new-month} AND {week} = {new-week}"), "right_join_key_properties":cty.UnknownVal(cty.List(cty.Object(map[string]cty.Type{"unique_key":cty.Bool}))), "right_operand":cty.StringVal("new-generated-total-example"), "type":cty.StringVal("OUTER")})}), "physical_table_id":cty.UnknownVal(cty.String)})})}) does not correlate with any element in actual
2023-07-11T14:03:11.334Z [DEBUG] State storage *statemgr.Filesystem declined to persist a state snapshot
2023-07-11T14:03:12.224Z [WARN]  Provider "registry.terraform.io/hashicorp/aws" produced an invalid plan for module.example.aws_quicksight_analysis.generated_total_example_analysis, 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:
      - .recovery_window_in_days: planned value cty.NumberIntVal(30) for a non-computed attribute
      - .parameters: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
2023-07-11T14:03:12.225Z [INFO]  Starting apply for module.example.aws_quicksight_analysis.generated_total_example_analysis
2023-07-11T14:03:12.324Z [DEBUG] module.example.aws_quicksight_analysis.generated_total_example_analysis: applying the planned Create change
2023-07-11T14:03:12.383Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "parameters" from ComputedKeys
2023-07-11T14:03:12.384Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: [DEBUG] setting computed for "tags_all" from ComputedKeys
2023-07-11T14:03:12.405Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Request Sent: http.request.body="{"Definition":{"Anal********ults":{"Defa********************tion":{"Inte**********************tion":{"Grid":{"Canv*********ions":{"Scre***************ions":{"Opti**************idth":"1600px","ResizeOption":"FIXED"}}}},"Shee********Type":"INTERACTIVE"}},"Calc********elds":[{"Data*********fier":"123456789,unified-generated-total-profile-dataset","Expression":"parseDate(concat(toString(1), '/', toString(month), '/', toString(year)), 'dd/MM/yyyy')","Name":"Date"}],"Data*********************ions":[{"DataSetArn":"arn:aws:quicksight:eu-west-1:123456789:dataset/unified-generated-total-profile-dataset","Identifier":"123456789,unified-generated-total-profile-dataset"}],"Sheets":[{"ContentType":"INTERACTIVE","Layouts":[{"Configuration":{"GridLayout":{"Canv*********ions":{"Scre***************ions":{"Opti**************idth":"1600px","ResizeOption":"FIXED"}},"Elements":[{"ColumnSpan":32,"ElementId":"old-new-comparison-chart","ElementType":"VISUAL","RowSpan":12}]}}}],"Name":"Old V New Generated example","SheetId":"total-example-sheet","Visuals":[{"TableVisual":{"Char**********tion":{"FieldWells":{"Tabl*******************ells":{"Values":[{"Column":{"ColumnName":"submitted on","Data*********fier":"123456789,unified-generated-total-profile-dataset"},"FieldId":"example-field-submitted on"}]}},"Sort*********tion":{"RowSort":[{"FieldSort":{"Direction":"DESC","FieldId":"example-field-submitted on"}}]},"TableOptions":{"HeaderStyle":{"Font*********tion":{"FontColor":"#212121","FontDecoration":"NONE","FontSize":{"Relative":"LARGE"},"FontStyle":"NORMAL","FontWeight":{"Name":"NORMAL"}},"Height":25}}},"Subtitle":{"Visibility":"HIDDEN"},"Title":{"FormatText":{"RichText":"<visual-title>example</visual-title>"},"Visibility":"HIDDEN"},"VisualId":"example-response-visual"}}]}]},"Name":"Old vs New Total example Analysis"}
[truncated...]" tf_mux_provider=*schema.GRPCProviderServer tf_req_id=bd482dae-8336-b3cd-e44e-d2e490a60cf0 @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:96 aws.region=eu-west-1 aws.service=QuickSight http.url=https://quicksight.eu-west-1.amazonaws.com/accounts/123456789/analyses/generated-total-example-analysis http.request.header.authorization="AWS4-HMAC-SHA256 Credential=ASIA************2EBO********1/eu-west-1/qu*********aws4_request, Sign*************tent-length;content-type;host;x-amz-date;x-amz-security-token, Signature=*****" http.request.header.x_amz_security_token=***** http.request_content_length=1831 http.user_agent="APN/1.0 HashiCorp/1.0 Terraform/1.5.2 (+https://www.terraform.io) terraform-provider-aws/5.5.0 (+https://registry.terraform.io/providers/hashicorp/aws) aws-sdk-go/1.44.286 (go1.20.5; linux; amd64)" net.peer.name=quicksight.eu-west-1.amazonaws.com aws.operation=CreateAnalysis aws.sdk=aws-sdk-go http.method=POST tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_analysis tf_rpc=ApplyResourceChange http.request.header.content_type=application/json http.request.header.x_amz_date=20230711T140312Z @module=aws http.flavor=1.1 timestamp=2023-07-11T14:03:12.405Z
2023-07-11T14:03:12.762Z [DEBUG] provider.terraform-provider-aws_v5.5.0_x5: HTTP Response Received: http.response.header.x_amzn_errortype=InvalidParameterValueException http.response.header.x_amzn_requestid=69c127ff-4b5b-43b7-955b-bee3f096e860 http.status_code=400 tf_provider_addr=registry.terraform.io/hashicorp/aws tf_resource_type=aws_quicksight_analysis aws.operation=CreateAnalysis aws.service=QuickSight http.response.header.date="Tue, 11 Jul 2023 14:03:12 GMT" tf_req_id=bd482dae-8336-b3cd-e44e-d2e490a60cf0 aws.region=eu-west-1 http.response.body="{"Message":"Custom font weight is not supported for this chart.","RequestId":"69c127ff-4b5b-43b7-955b-bee3f096e860"}
" http.response.header.content_type=application/json @caller=github.com/hashicorp/aws-sdk-go-base/v2/awsv1shim/v2@v2.0.0-beta.31/logger.go:144 @module=aws aws.sdk=aws-sdk-go http.duration=356 tf_mux_provider=*schema.GRPCProviderServer tf_rpc=ApplyResourceChange timestamp=2023-07-11T14:03:12.761Z
2023-07-11T14:03:12.779Z [ERROR] provider.terraform-provider-aws_v5.5.0_x5: Response contains error diagnostic: tf_resource_type=aws_quicksight_analysis @module=sdk.proto tf_proto_version=5.3 diagnostic_detail= diagnostic_severity=ERROR diagnostic_summary="creating Amazon QuickSight Analysis (Old vs New Total example Analysis): InvalidParameterValueException: Custom font weight is not supported for this chart.
{
  RespMetadata: {
    StatusCode: 400,
    RequestID: "69c127ff-4b5b-43b7-955b-bee3f096e860"
  },
  Message_: "Custom font weight is not supported for this chart.",
  RequestId: "69c127ff-4b5b-43b7-955b-bee3f096e860"
}" tf_provider_addr=registry.terraform.io/hashicorp/aws tf_req_id=bd482dae-8336-b3cd-e44e-d2e490a60cf0 @caller=github.com/hashicorp/terraform-plugin-go@v0.15.0/tfprotov5/internal/diag/diagnostics.go:55 tf_rpc=ApplyResourceChange timestamp=2023-07-11T14:03:12.778Z
2023-07-11T14:03:12.829Z [DEBUG] State storage *statemgr.Filesystem declined to persist a state snapshot
2023-07-11T14:03:12.829Z [ERROR] vertex "module.example.aws_quicksight_analysis.generated_total_example_analysis" error: creating Amazon QuickSight Analysis (Old vs New Total example Analysis): InvalidParameterValueException: Custom font weight is not supported for this chart.
{
  RespMetadata: {
    StatusCode: 400,
    RequestID: "69c127ff-4b5b-43b7-955b-bee3f096e860"
  },
  Message_: "Custom font weight is not supported for this chart.",
  RequestId: "69c127ff-4b5b-43b7-955b-bee3f096e860"
}
2023-07-11T14:03:12.843Z [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2023-07-11T14:03:12.855Z [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/aws/5.5.0/linux_amd64/terraform-provider-aws_v5.5.0_x5 pid=97
2023-07-11T14:03:12.855Z [DEBUG] provider: plugin exited

Panic Output

No response

Important Factoids

No response

References

No response

Would you like to implement a fix?

None

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

justinretzolk commented 1 year ago

Hey @jshort-insights 👋 Thank you for taking the time to raise this! Would it be possible to supply debug logs (redacted as needed) as well?

jshort-insights commented 1 year ago

Hey @jshort-insights 👋 Thank you for taking the time to raise this! Would it be possible to supply debug logs (redacted as needed) as well?

@justinretzolk I have updated the details with the debug log

jar-b commented 1 year ago

After some research it appears:

  1. Neither font_weight or font_style can be set (even though only the InvalidParameterValueException only implies font_weight).
  2. font_decoration is always returned as nil, regardless of what is set. This may be a bug on the AWS side, but I've omitted it from acceptance testing since it was set to "NONE" in the original bug report.

With fixes applied to the font_configuration schema (#33018), I was able to get the following size and color settings to apply successfully:

            table_options {
              header_style {
                background_color = "#99CCFF"
                height           = 20
                font_configuration {
                  font_color = "#212121"
                  font_size {
                    relative = "LARGE"
                  }
                }
              }
            }
github-actions[bot] commented 1 year ago

This functionality has been released in v5.13.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

github-actions[bot] commented 1 year ago

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