diff --git a/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown b/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown index 8bf2702c05df..41c79d39132c 100644 --- a/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/google_project_service.html.markdown @@ -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 } ``` @@ -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.