Skip to content

Commit

Permalink
Merge pull request #39843 from ohookins/fix-apprunner-autoscaling-con…
Browse files Browse the repository at this point in the history
…fig-max-size-constraint

Remove unnecessary upper limit on AppRunner Autoscaling Config max size.
  • Loading branch information
ewbankkit authored Oct 23, 2024
2 parents 4856021 + 21fa896 commit 4410162
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/39843.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_apprunner_auto_scaling_configuration_version: Remove the upper limit on `min_size` and `max_size`
```
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ func resourceAutoScalingConfigurationVersion() *schema.Resource {
Optional: true,
Default: 25,
ForceNew: true,
ValidateFunc: validation.IntBetween(1, 25),
ValidateFunc: validation.IntAtLeast(1),
},
"min_size": {
Type: schema.TypeInt,
Optional: true,
Default: 1,
ForceNew: true,
ValidateFunc: validation.IntBetween(1, 25),
ValidateFunc: validation.IntAtLeast(1),
},
names.AttrStatus: {
Type: schema.TypeString,
Expand Down

0 comments on commit 4410162

Please sign in to comment.