github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/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 ``` 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 updates 30 the GCE state. 31 32 ## Attributes Reference 33 34 The following attributes are exported: 35 36 * `metadata` - Common instance metadata.