Skip to content

Commit

Permalink
Merge pull request #32933 from hashicorp/b-appstream_fleet-max_durati…
Browse files Browse the repository at this point in the history
…on_in_seconds

r/aws_appstream_fleet: Update `max_user_duration_in_seconds` to `432000`
  • Loading branch information
justinretzolk authored Aug 10, 2023
2 parents 9e2fbfb + 5b4721e commit 26c21ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/32933.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_appstream_fleet: Increased upper limit of `max_user_duration_in_seconds` to 432000
```
2 changes: 1 addition & 1 deletion internal/service/appstream/fleet.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func ResourceFleet() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(600, 360000),
ValidateFunc: validation.IntBetween(600, 432000),
},
"name": {
Type: schema.TypeString,
Expand Down

0 comments on commit 26c21ab

Please sign in to comment.