Open jsvensson opened 1 year ago
Generally the workaround for this is something like
locals {
op_default_tags = ["foo", "bar"]
}
resource "onepassword_item" "example" {
tags = concat(local.op_default_tags, ["baz"])
}
So if you are managing multiple items, you need only define the tags in one place.
Summary
Add provider settings to define one or more tags that get added by default to resources.
Use cases
Default tags would provide several useful use cases:
Proposed solution
Example format:
Given a resource like this, the finalized set of tags for the resource would be
["foo", "bar", "baz"]
.Is there a workaround to accomplish this today?
None I'm aware of.
References & Prior Work