Skip to content

Commit

Permalink
add docs for google_project_service timeouts (#4787)
Browse files Browse the repository at this point in the history
  • Loading branch information
megan07 authored May 14, 2021
1 parent 6bf2e4e commit 2cd66de
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ resource "google_project_service" "project" {
project = "your-project-id"
service = "iam.googleapis.com"
timeouts {
create = "30m"
update = "40m"
}
disable_dependent_services = true
}
```
Expand All @@ -46,6 +51,16 @@ In addition to the arguments listed above, the following computed attributes are

* `id` - an identifier for the resource with format `{{project}}/{{service}}`

## Timeouts

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

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

## Import

Project services can be imported using the `project_id` and `service`, e.g.
Expand Down

0 comments on commit 2cd66de

Please sign in to comment.