From 390378a29567cee7f84c452db5d87bfa3a0427c2 Mon Sep 17 00:00:00 2001 From: drewmullen Date: Tue, 12 Oct 2021 10:08:58 -0400 Subject: [PATCH 1/2] rm hard limit on distributions --- aws/resource_aws_imagebuilder_distribution_configuration.go | 1 - 1 file changed, 1 deletion(-) diff --git a/aws/resource_aws_imagebuilder_distribution_configuration.go b/aws/resource_aws_imagebuilder_distribution_configuration.go index 0323e55d2f13..d512391333b1 100644 --- a/aws/resource_aws_imagebuilder_distribution_configuration.go +++ b/aws/resource_aws_imagebuilder_distribution_configuration.go @@ -104,7 +104,6 @@ func resourceAwsImageBuilderDistributionConfiguration() *schema.Resource { Type: schema.TypeString, ValidateFunc: validateAwsAccountId, }, - MaxItems: 50, }, }, }, From 5e63c343d0bfecab1ef9dac64274769f7594bacf Mon Sep 17 00:00:00 2001 From: drewmullen Date: Tue, 12 Oct 2021 10:27:24 -0400 Subject: [PATCH 2/2] changelog --- .changelog/21254.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/21254.txt diff --git a/.changelog/21254.txt b/.changelog/21254.txt new file mode 100644 index 000000000000..b6a5aed5c7a4 --- /dev/null +++ b/.changelog/21254.txt @@ -0,0 +1,3 @@ +```release-note:bug +resource/aws_imagebuilder_distribution_configuration: remove hard limit on distribution target accounts +```