gitlab_group_saml_link (Resource)

The gitlab_group_saml_link resource allows to manage the lifecycle of an SAML integration with a group.

Upstream API: GitLab REST API docs

Example Usage

resource "gitlab_group_saml_link" "test" {
  group           = "12345"
  access_level    = "developer"
  saml_group_name = "samlgroupname1"
}

Schema

Required

Read-Only

Import

Import is supported using the following syntax:

# GitLab group saml links can be imported using an id made up of `group_id:saml_group_name`, e.g.
terraform import gitlab_group_saml_link.test "12345:samlgroupname1"