File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,22 @@ resource "github_issue_label" "community_files_label" {
57
57
description = " Community files have been modified"
58
58
}
59
59
60
+ resource "github_issue_label" "magnum_label" {
61
+ for_each = toset (flatten (values (var. repositories )))
62
+ repository = each. value
63
+ name = " magnum"
64
+ color = " 6B0560"
65
+ description = " All things OpenStack Magnum related"
66
+ }
67
+
68
+ resource "github_issue_label" "monitoring_label" {
69
+ for_each = toset (flatten (values (var. repositories )))
70
+ repository = each. value
71
+ name = " monitoring"
72
+ color = " FBCA04"
73
+ description = " All things related to observability & telemetry"
74
+ }
75
+
60
76
data "github_repository" "repositories" {
61
77
for_each = toset (flatten (values (var. repositories )))
62
78
full_name = format (" %s/%s" , var. owner , each. value )
You can’t perform that action at this time.
0 commit comments