Skip to content

Commit

Permalink
Fix SAML resource example
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Sep 5, 2022
1 parent c90f780 commit c0d5f3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/group_saml_link.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `gitlab_group_saml_link` resource allows to manage the lifecycle of an SAML
```terraform
resource "gitlab_group_saml_link" "test" {
group_id = "12345"
access_level = "Developer"
access_level = "developer"
saml_group_name = "samlgroupname1"
}
```
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/gitlab_group_saml_link/resource.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "gitlab_group_saml_link" "test" {
group_id = "12345"
access_level = "Developer"
access_level = "developer"
saml_group_name = "samlgroupname1"
}

0 comments on commit c0d5f3a

Please sign in to comment.