Skip to content

Commit 0286dde

Browse files
committed
Fix attribute key to group
1 parent 4f7c898 commit 0286dde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/resource_gitlab_group_label_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ resource "gitlab_group" "foo" {
206206
}
207207
208208
resource "gitlab_group_label" "fixme" {
209-
project = "${gitlab_group.foo.id}"
209+
group = "${gitlab_group.foo.id}"
210210
name = format("FIXME%%02d", count.index+1)
211211
count = 100
212212
color = "#ffcc00"
@@ -225,7 +225,7 @@ resource "gitlab_group" "foo" {
225225
}
226226
227227
resource "gitlab_group_label" "fixme" {
228-
project = "${gitlab_group.foo.id}"
228+
group = "${gitlab_group.foo.id}"
229229
name = format("FIXME%%02d", count.index+1)
230230
count = 99
231231
color = "#ff0000"

0 commit comments

Comments
 (0)