Terraform v1.13.4
AWS Provider v6.31.0
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" } } } }
Blocks of type "label" are not expected here.
│ Error: Unsupported block type
│
│ on quicksight_cluster_dashboard.tf line 66:
│ 66: label {
│
│ Blocks of type "label" are not expected here.
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"
}
}
}
}
}
}
}
}
}
}
}
N/A
Kiro
CloudFormation: ScatterPlotCategoricallyAggregatedFieldWells
No