github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/google/r/google_project_services.html.markdown (about)

     1  ---
     2  layout: "google"
     3  page_title: "Google: google_project_services"
     4  sidebar_current: "docs-google-project-services"
     5  description: |-
     6   Allows management of API services for a Google Cloud Platform project.
     7  ---
     8  
     9  # google\_project\_services
    10  
    11  Allows management of enabled API services for an existing Google Cloud
    12  Platform project. Services in an existing project that are not defined
    13  in the config will be removed.
    14  
    15  ## Example Usage
    16  
    17  ```hcl
    18  resource "google_project_services" "project" {
    19    project = "your-project-id"
    20    services   = ["iam.googleapis.com", "cloudresourcemanager.googleapis.com"]
    21  }
    22  ```
    23  
    24  ## Argument Reference
    25  
    26  The following arguments are supported:
    27  
    28  * `project` - (Required) The project ID.
    29      Changing this forces a new project to be created.
    30  
    31  * `services` - (Required) The list of services that are enabled. Supports
    32      update.