Add support for resource management tags and tag bindings (#552)

* organization module

* folder module

* project module

* fix project binding

* use id instead of name for references

* kms module

* compute-vm

* fix compute-vm
This commit is contained in:
Ludovico Magnocavallo
2022-02-20 10:14:18 +00:00
committed by GitHub
parent 2ceead40e3
commit 0b5ed8b7ef
19 changed files with 487 additions and 50 deletions

View File

@@ -94,3 +94,9 @@ variable "project_id" {
description = "Project id where the keyring will be created."
type = string
}
variable "tag_bindings" {
description = "Tag bindings for this keyring, in key => tag value id format."
type = map(string)
default = null
}