forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for google_compute_project_metadata_item (hashicorp#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
- Loading branch information
Showing
3 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
layout: "google" | ||
page_title: "Google: google_compute_project_metadata_item" | ||
sidebar_current: "docs-google-compute-project-metadata-item" | ||
description: |- | ||
Manages a single key/value pair on common instance metadata | ||
--- | ||
|
||
# google\_compute\_project\_metadata\_item | ||
|
||
Manages a single key/value pair on metadata common to all instances for | ||
a project in GCE. Using `google_compute_project_metadata_item` lets you | ||
manage a single key/value setting in Terraform rather than the entire | ||
project metadata map. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "google_compute_project_metadata_item" "default" { | ||
key = "my_metadata" | ||
value = "my_value" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `key` - (Required) The metadata key to set. | ||
|
||
* `value` - (Required) The value to set for the given metadata key. | ||
|
||
- - - | ||
|
||
* `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. | ||
|
||
## Import | ||
|
||
Project metadata items can be imported using the `key`, e.g. | ||
|
||
``` | ||
$ terraform import google_compute_project_metadata_item.default my_metadata | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters