We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e67d46 commit 67d3ed8Copy full SHA for 67d3ed8
main.tf
@@ -13,6 +13,7 @@ module "labels" {
13
name = var.name
14
repository = var.repository
15
environment = var.environment
16
+ attributes = var.attributes
17
managedby = var.managedby
18
label_order = var.label_order
19
}
variables.tf
@@ -18,6 +18,12 @@ variable "environment" {
description = "Environment (e.g. `prod`, `dev`, `staging`)."
20
21
+variable "attributes" {
22
+ type = list(any)
23
+ default = []
24
+ description = "Additional attributes (e.g. `1`)."
25
+}
26
+
27
variable "managedby" {
28
type = string
29
default = "hello@clouddrove.com"
0 commit comments