hashicorp/terraform-provider-aws

aws_quicksight_dashboard / aws_quicksight_analysis: scatter_plot_categorically_aggregated_field_wells missing label block

Aperta

#46.529 aperta il 17 feb 2026

 (2 commenti) (0 reazioni) (0 assegnatari)Go (10.312 fork)github user discovery
enhancementgood first issueservice/quicksight

Metriche repository

Star
 (11.045 stelle)
Metriche merge PR
 (Merge medio 19g 21h) (251 PR mergiate in 30 g)

Descrizione

Terraform and AWS Provider Version

Terraform v1.13.4
AWS Provider v6.31.0

Affected Resource(s) or Data Source(s)

  • aws_quicksight_dashboard
  • aws_quicksight_analysis

Expected Behavior

The scatter_plot_categorically_aggregated_field_wells block should support a label sub-block that accepts categorical_dimension_field or date_dimension_field, matching the QuickSight API. scatter_plot_categorically_aggregated_field_wells { x_axis { ... } y_axis { ... } category { ... } label { categorical_dimension_field { field_id = "ticket_id_label" column { data_set_identifier = "my_dataset" column_name = "ticket_id" } } } }

Actual Behavior

Blocks of type "label" are not expected here.

Relevant Error/Panic Output

│ Error: Unsupported block type
│
│   on quicksight_cluster_dashboard.tf line 66:
│   66:                 label {
│
│ Blocks of type "label" are not expected here.

Sample Terraform Configuration

resource "aws_quicksight_dashboard" "example" {
  # ...
  definition {
    sheets {
      visuals {
        scatter_plot_visual {
          chart_configuration {
            field_wells {
              scatter_plot_categorically_aggregated_field_wells {
                x_axis { ... }
                y_axis { ... }
                category { ... }
                # This block is not recognized by the provider
                label {
                  categorical_dimension_field {
                    field_id = "ticket_id_label"
                    column {
                      data_set_identifier = "my_dataset"
                      column_name         = "ticket_id"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

Steps to Reproduce

  1. Add a label block inside scatter_plot_categorically_aggregated_field_wells in an aws_quicksight_dashboard or aws_quicksight_analysis resource
  2. Run terraform plan
  3. Observe error: Blocks of type "label" are not expected here.

Debug Logging

N/A

GenAI / LLM Assisted Development

Kiro

Important Facts and References

CloudFormation: ScatterPlotCategoricallyAggregatedFieldWells

Would you like to implement a fix?

No

Guida contributor