Skip to content

Commit

Permalink
fix: fix typo in mapping for cascading_control_configuration
Browse files Browse the repository at this point in the history
The internally used key `cacading_control_configuration` contains a typo, so that the mapping finally fails.
  • Loading branch information
stefanfreitagrwe committed Sep 23, 2024
1 parent e6438dd commit 060a7ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/quicksight/schema/template_parameter.go
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ func flattenParameterListControl(apiObject *awstypes.ParameterListControl) []int
}

if apiObject.CascadingControlConfiguration != nil {
tfMap["cacading_control_configuration"] = flattenCascadingControlConfiguration(apiObject.CascadingControlConfiguration)
tfMap["cascading_control_configuration"] = flattenCascadingControlConfiguration(apiObject.CascadingControlConfiguration)
}
if apiObject.DisplayOptions != nil {
tfMap["display_options"] = flattenListControlDisplayOptions(apiObject.DisplayOptions)
Expand Down

0 comments on commit 060a7ed

Please sign in to comment.