Skip to content

Commit

Permalink
Bump google_project timeout (#3784)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileykarson authored Jul 27, 2020
1 parent 986d8a2 commit ca88601
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 4 additions & 4 deletions third_party/terraform/resources/resource_google_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func resourceGoogleProject() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(4 * time.Minute),
Update: schema.DefaultTimeout(4 * time.Minute),
Read: schema.DefaultTimeout(4 * time.Minute),
Delete: schema.DefaultTimeout(4 * time.Minute),
Create: schema.DefaultTimeout(10 * time.Minute),
Update: schema.DefaultTimeout(10 * time.Minute),
Read: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(10 * time.Minute),
},

MigrateState: resourceGoogleProjectMigrateState,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ exported:

* `number` - The numeric identifier of the project.

## Timeouts

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

- `create` - Default is 10 minutes.
- `update` - Default is 10 minutes.
- `delete` - Default is 10 minutes.

## Import

Projects can be imported using the `project_id`, e.g.
Expand Down

0 comments on commit ca88601

Please sign in to comment.