From e14b46c6eb97c9b5e311f70e09b2bb9a165ef44f Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Fri, 21 Jul 2023 14:05:23 -0400 Subject: [PATCH 1/2] r/aws_quicksight: grid layout optimized_view_port_width argument is optional --- internal/service/quicksight/schema/template_sheet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/quicksight/schema/template_sheet.go b/internal/service/quicksight/schema/template_sheet.go index ba56e22dd621..e283308b5910 100644 --- a/internal/service/quicksight/schema/template_sheet.go +++ b/internal/service/quicksight/schema/template_sheet.go @@ -378,7 +378,7 @@ func gridLayoutConfigurationSchema() *schema.Schema { Schema: map[string]*schema.Schema{ "optimized_view_port_width": { Type: schema.TypeString, - Required: true, + Optional: true, }, "resize_option": stringSchema(true, validation.StringInSlice(quicksight.ResizeOption_Values(), false)), }, From 4fc02dab883644dfb0b099968e1c670cfc9ff182 Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Fri, 21 Jul 2023 14:17:43 -0400 Subject: [PATCH 2/2] chore: changelog --- .changelog/32644.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changelog/32644.txt diff --git a/.changelog/32644.txt b/.changelog/32644.txt new file mode 100644 index 000000000000..807c4d337c9d --- /dev/null +++ b/.changelog/32644.txt @@ -0,0 +1,11 @@ +```release-note:bug +aws_quicksight_analysis: grid layout `optimized_view_port_width` argument changed to optional +``` + +```release-note:bug +aws_quicksight_dashboard: grid layout `optimized_view_port_width` argument changed to optional +``` + +```release-note:bug +aws_quicksight_template: grid layout `optimized_view_port_width` argument changed to optional +```