provider/google: remove deleted services field.

We removed the services field from the `google_project` resource, but it
lingered in the docs. This removes those out of date references to it.
This commit is contained in:
Paddy 2017-05-17 23:24:42 -07:00
parent 075fc44193
commit cfdf597f9a

View File

@ -8,8 +8,7 @@ description: |-
# google\_project
Allows creation and management of a Google Cloud Platform project and its
associated enabled services/APIs.
Allows creation and management of a Google Cloud Platform project.
Projects created with this resource must be associated with an Organization.
See the [Organization documentation](https://cloud.google.com/resource-manager/docs/quickstarts) for more details.
@ -43,7 +42,6 @@ Terraform. Only newly added projects are affected.
resource "google_project" "my_project" {
project_id = "your-project-id"
org_id = "1234567"
services = ["compute_component", "storage-component-json.googleapis.com", "iam.googleapis.com"]
}
```