Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resource/aws_gamelift_fleet: Increase default deletion timeout to 20 minutes, add missing timeouts documentation #10443

Merged
merged 1 commit into from
Oct 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws/resource_aws_gamelift_fleet.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func resourceAwsGameliftFleet() *schema.Resource {

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(70 * time.Minute),
Delete: schema.DefaultTimeout(5 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down
7 changes: 7 additions & 0 deletions website/docs/r/gamelift_fleet.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ In addition to all arguments above, the following attributes are exported:
* `arn` - Fleet ARN.
* `operating_system` - Operating system of the fleet's computing resources.

## Timeouts

`aws_gamelift_fleet` provides the following [Timeouts](/docs/configuration/resources.html#timeouts) configuration options:

* `create` - (Default `70m`) How long to wait for a fleet to be created.
* `delete` - (Default `20m`) How long to wait for a fleet to be deleted.

## Import

Gamelift Fleets cannot be imported at this time.