Skip to content

Commit

Permalink
Merge pull request #31608 from curator/b-remove-upper-limit-on-origin…
Browse files Browse the repository at this point in the history
…-keepalive-timeout

Remove the upper bound on aws_cloudfront_distribution/origin_keepalive_timeout
  • Loading branch information
ewbankkit authored May 30, 2023
2 parents ac314a1 + a8eeb83 commit df8fa3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/31608.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_cloudfront_distribution: Remove the upper limit on `origin_keepalive_timeout`
```
2 changes: 1 addition & 1 deletion internal/service/cloudfront/distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ func ResourceDistribution() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: 5,
ValidateFunc: validation.IntBetween(1, 180),
ValidateFunc: validation.IntAtLeast(1),
},
"origin_read_timeout": {
Type: schema.TypeInt,
Expand Down

0 comments on commit df8fa3f

Please sign in to comment.