Get SAML Group Links information
New Data Source
Find information on SAML group links for a group
2 possible solutions :
- Update output of gitlab_group (Data Source), add read-only saml_group_links information like in the API
data "gitlab_group" "foo" {
group_id = 123
}
- Add new Data Source gitlab_group_saml_links like in the API
data "gitlab_group_saml_links" "foo" {
group_id = 123
}
Related GitLab APIs
API documentation:
- https://docs.gitlab.com/api/groups/#get-a-single-group
- https://docs.gitlab.com/api/saml/#saml-group-links
Additional Details
-
GitLab REST API resources available (read for data sources, CRUD for resources) -
client-go supports the related GitLab API already -
I'd like to contribute it myself
Edited by Aurélien Bosson