terraform-provider-google/website/docs/r/compute_project_metadata.html.markdown
Joe Selman 236c0f5d24 Add support for google_compute_project_metadata_item (#176)
* Add support for google_compute_project_metadata_item

This allows terraform users to manage single key/value items within the
project metadata map, rather than the entire map itself.

* Update CHANGELOG.md

* Add details about import
2017-07-17 16:28:51 -07:00

1021 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. If you want to manage only single key/value pairs within the project metadata rather than the entire set, then use google_compute_project_metadata_item.

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.