Skip to content

Commit 26c53de

Browse files
authored
Merge pull request #1256 from gitlabhq/saml-example-fix
resource/gitlab_group_saml_link: Fix `group` attribute in example. Closes #1255
2 parents e189ddb + 78e68bf commit 26c53de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/group_saml_link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `gitlab_group_saml_link` resource allows to manage the lifecycle of an SAML
1717

1818
```terraform
1919
resource "gitlab_group_saml_link" "test" {
20-
group_id = "12345"
20+
group = "12345"
2121
access_level = "developer"
2222
saml_group_name = "samlgroupname1"
2323
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource "gitlab_group_saml_link" "test" {
2-
group_id = "12345"
2+
group = "12345"
33
access_level = "developer"
44
saml_group_name = "samlgroupname1"
55
}

0 commit comments

Comments
 (0)