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

     1  ---
     2  layout: "google"
     3  page_title: "Google: google_compute_project_metadata"
     4  sidebar_current: "docs-google-compute-project-metadata"
     5  description: |-
     6    Manages common instance metadata
     7  ---
     8  
     9  # google\_compute\_project\_metadata
    10  
    11  Manages metadata common to all instances for a project in GCE.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "google_compute_project_metadata" "default" {
    17    metadata {
    18      foo  = "bar"
    19      fizz = "buzz"
    20      "13" = "42"
    21    }
    22  }
    23  ```
    24  
    25  ## Argument Reference
    26  
    27  The following arguments are supported:
    28  
    29  * `metadata` - (Required) A series of key value pairs. Changing this resource
    30      updates the GCE state.
    31  
    32  - - -
    33  
    34  * `project` - (Optional) The project in which the resource belongs. If it
    35      is not provided, the provider project is used.
    36  
    37  ## Attributes Reference
    38  
    39  Only the arguments listed above are exposed as attributes.