Skip to content

Commit

Permalink
Merge pull request #39226 from hashicorp/issue-39219
Browse files Browse the repository at this point in the history
r/aws_quicksight_data_set: Change `permissions.actions` `MaxItems` from `16` to `20`
  • Loading branch information
ewbankkit authored Sep 9, 2024
2 parents b193a6a + 5a8b9bf commit 96eeeab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/39226.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_quicksight_data_set: Change `permissions.actions` `MaxItems` from `16` to `20`. This fixes a regression introduced in [v5.66.0](https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md#5660-september--5-2024)
```
2 changes: 1 addition & 1 deletion internal/service/quicksight/schema/permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func PermissionsSchema() *schema.Schema {
Type: schema.TypeSet,
Required: true,
MinItems: 1,
MaxItems: 16,
MaxItems: 20,
Elem: &schema.Schema{Type: schema.TypeString},
},
names.AttrPrincipal: {
Expand Down

0 comments on commit 96eeeab

Please sign in to comment.