terraform-provider-google/r/compute_project_metadata.html.markdown
Seth Vargo 9da0d13c73 Update documentation to include new "project" attribute
This commit also normalizes the format we display attributes.
2016-04-10 17:34:15 -04:00

829 B

layout page_title sidebar_current description
google Google: google_compute_project_metadata docs-google-compute-project-metadata Manages common instance metadata

google_compute_project_metadata

Manages metadata common to all instances for a project in GCE.

Example Usage

resource "google_compute_project_metadata" "default" {
  metadata {
    foo  = "bar"
    fizz = "buzz"
    13   = "42"
  }
}

Argument Reference

The following arguments are supported:

  • metadata - (Required) A series of key value pairs. Changing this resource updates the GCE state.

  • project - (Optional) The project in which the resource belongs. If it is not provided, the provider project is used.

Attributes Reference

Only the arguments listed above are exposed as attributes.