Skip to content

Commit

Permalink
Quicksight: raise limit for maximum allowed visuals per sheet to 50 (#…
Browse files Browse the repository at this point in the history
…32856)

* Quicksight: raise limit for maximum allowed visuals per sheet to 50

* Add changelog
  • Loading branch information
denvazh authored Aug 11, 2023
1 parent 12ac930 commit 2f6f4c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/32856.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_quicksight_analysis: raise limit for maximum allowed `visuals` blocks per sheet to 50
```
2 changes: 1 addition & 1 deletion internal/service/quicksight/schema/visual.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func visualsSchema() *schema.Schema {
return &schema.Schema{ // https://docs.aws.amazon.com/quicksight/latest/APIReference/API_SheetControlLayout.html
Type: schema.TypeList,
MinItems: 1,
MaxItems: 30,
MaxItems: 50,
Optional: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit 2f6f4c1

Please sign in to comment.