Skip to content

Commit

Permalink
Merge pull request #10443 from terraform-providers/b-aws_gamelift_fle…
Browse files Browse the repository at this point in the history
…et-timeouts

resource/aws_gamelift_fleet: Increase default deletion timeout to 20 minutes, add missing timeouts documentation
  • Loading branch information
bflad authored Oct 11, 2019
2 parents 000e833 + 8dc26b3 commit c2ff469
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
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.

0 comments on commit c2ff469

Please sign in to comment.