Skip to content

Commit

Permalink
Merge pull request #35173 from Jgeissler14/f-appstream-fleet-timeout
Browse files Browse the repository at this point in the history
update the appstream fleet idle timeout per aws docs
  • Loading branch information
ewbankkit committed Jan 10, 2024
2 parents b4cfc37 + d25e16a commit cfead05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/35173.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_appstream_fleet: Increase `idle_disconnect_timeout_in_seconds` max value for validation to 360000
```
2 changes: 1 addition & 1 deletion internal/service/appstream/fleet.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func ResourceFleet() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: 0,
ValidateFunc: validation.IntBetween(60, 3600),
ValidateFunc: validation.IntBetween(60, 360000),
},
"image_arn": {
Type: schema.TypeString,
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/appstream_fleet.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The following arguments are optional:
* `enable_default_internet_access` - (Optional) Enables or disables default internet access for the fleet.
* `fleet_type` - (Optional) Fleet type. Valid values are: `ON_DEMAND`, `ALWAYS_ON`
* `iam_role_arn` - (Optional) ARN of the IAM role to apply to the fleet.
* `idle_disconnect_timeout_in_seconds` - (Optional) Amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the `disconnect_timeout_in_seconds` time interval begins.
* `idle_disconnect_timeout_in_seconds` - (Optional) Amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the `disconnect_timeout_in_seconds` time interval begins. Defaults to 60 seconds.
* `image_name` - (Optional) Name of the image used to create the fleet.
* `image_arn` - (Optional) ARN of the public, private, or shared image to use.
* `stream_view` - (Optional) AppStream 2.0 view that is displayed to your users when they stream from the fleet. When `APP` is specified, only the windows of applications opened by users display. When `DESKTOP` is specified, the standard desktop that is provided by the operating system displays. If not specified, defaults to `APP`.
Expand Down

0 comments on commit cfead05

Please sign in to comment.