-
Notifications
You must be signed in to change notification settings - Fork 10k
Open
Labels
bugAddresses a defect in current functionality.Addresses a defect in current functionality.needs-triageWaiting for first response or review from a maintainer.Waiting for first response or review from a maintainer.service/quicksightIssues and PRs that pertain to the quicksight service.Issues and PRs that pertain to the quicksight service.
Description
Terraform and AWS Provider Version
Terraform v1.13.4
AWS Provider v6.31.0Affected 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
- Add a label block inside scatter_plot_categorically_aggregated_field_wells in an aws_quicksight_dashboard or aws_quicksight_analysis resource
- Run terraform plan
- 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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugAddresses a defect in current functionality.Addresses a defect in current functionality.needs-triageWaiting for first response or review from a maintainer.Waiting for first response or review from a maintainer.service/quicksightIssues and PRs that pertain to the quicksight service.Issues and PRs that pertain to the quicksight service.