- Created by Chris Atherton, last modified by Andrijana Todosijevic on Jun 10, 2020
You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 33 Next »
This guide describes how Gitlab CE v13.x can be configured as a SAML Service Provider for eduTEAMS. The integration via SAML provides more benefits than the integration via OIDC, as the SAML implementation in Gitlab has (limited) support for authorizing users using groups. The OIDC implementation in Gitlab supports only authenticating users.
1. In order to set up a basic configuration, which would allow all users from your VO to authenticate via eduTEAMS and access the Gitlab service, you should edit the omniauth section /etc/gitlab/gitlab.rb config file.
NOTE: The "STEP nnn" comments refer directly to the OmniAuth guide https://docs.gitlab.com/13.0/ee/integration/saml.html.
# STEP 3 gitlab_rails['omniauth_enabled'] = true gitlab_rails['omniauth_allow_single_sign_on'] = ['saml'] gitlab_rails['omniauth_block_auto_created_users'] = false # STEP 4 gitlab_rails['omniauth_auto_link_saml_user'] = true # STEP 6 gitlab_rails['omniauth_providers'] = [ { name: 'saml', label: 'eduTEAMS', args: { assertion_consumer_service_url: 'https://gitlab.example.com/users/auth/saml/callback', idp_cert_fingerprint: '72:8A:6C:6B:63:35:3F:E0:BF:70:8D:41:0E:B7:02:CF:C5:86:53:24', idp_sso_target_url: 'https://proxy.eduteams.org/saml2sp/sso/redirect', issuer: 'https://gitlab.example.com', name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent', uid: ["urn:oasis:names:tc:SAML:attribute:subject-id"], email: ["urn:oid:0.9.2342.19200300.100.1.3",], first_name: ["urn:oid:2.5.4.42"], last_name: ["urn:oid:2.5.4.4"] }, groups_attribute: 'urn:oid:1.3.6.1.4.1.5923.1.1.1.7', required_groups: [], admin_groups: [], audit_groups: [] } ]
2. In order to edit this part of the config file correctly, you should have the values for the configuration options defined and known.
Configuration Option | Value | Description |
---|---|---|
assertion_consumer_service_url | (example)https://gitlab.example.com/users/auth/saml/callback | The HTTPS endpoint of your GitLab instance |
idp_cert_fingerprint | 72:8A:6C:6B:63:35:3F:E0:BF:70:8D:41:0E:B7:02:CF:C5:86:53:24 | This is the SHA1 fingerprint of the signing certificate used by the eduTEAMS SAML frontend |
idp_sso_target_url | https://proxy.eduteams.org/saml2sp/sso/redirect | This is the eduTEAMS endpoint supporting the HTTP-Redirect SAML 2.0 Binding |
issuer | (example) https://gitlab.example.com | A unique name identifying the gitlab application to the proxy |
name_identifier_format | urn:oasis:names:tc:SAML:2.0:nameid-format:persistent | The NameID format requested |
uid | urn:oasis:names:tc:SAML:attribute:subject-id | See Attributes available to Relying Parties#eduTEAMSIdentifier |
urn:oid:0.9.2342.19200300.100.1.3 | See Attributes available to Relying Parties#Emailaddress | |
first_name | urn:oid:2.5.4.42 | See Attributes available to Relying Parties#GivenName |
last_name | urn:oid:2.5.4.4 | See Attributes available to Relying Parties#FamilyName |
groups_attribute | urn:oid:1.3.6.1.4.1.5923.1.1.1.7 | See Attributes available to Relying Parties#Groups |
Full group definition: urn:geant:eduteams.org:service:eduteams:group:<VO_Name>:<Top_level group>[:<Sub_group_name>]#eduteams.org | (examples) urn:geant:eduteams.org:service:eduteams:group:Test_VO:Developers#eduteams.org | You should replace the <VO_Name> with your VO name to which you would like to connect the Gitlab service; You should replace the <Top_level group>:[<Sub_group_name>] with your group (and subgroup) name which should have access to the Gitlab service; |
CONFIGURE GROUPS
The SAML login in Gitlab includes support for limiting access to specific groups from your VO and authorizing users using these groups. There are four groups types that can be configured: required, admin, audit and external.
1. In order to add to a basic configuration, which would allow all users from your VO to authenticate via eduTEAMS and access the Gitlab service, you should edit the omniauth section /etc/gitlab/gitlab.rb config file, after the groups_attribute
section.
- You can control which groups can access the Gitlab instance using the
required_groups
configuration option. Whenrequired_groups
is not set or it is empty, anyone with proper authentication will be able to use the service. - You can control if a user should be assigned the admin role, using the
admin_groups
configuration option. - You can control if a user should be assigned the auditor role, using the
audit_groups
configuration option. - You can control if a user should be marked as external, using the
external_groups
configuration option.
# STEP 3 gitlab_rails['omniauth_enabled'] = true gitlab_rails['omniauth_allow_single_sign_on'] = ['saml'] gitlab_rails['omniauth_block_auto_created_users'] = false # STEP 4 gitlab_rails['omniauth_auto_link_saml_user'] = true # STEP 6 gitlab_rails['omniauth_providers'] = [ { name: 'saml', label: 'eduTEAMS', args: { assertion_consumer_service_url: 'https://gitlab.example.com/users/auth/saml/callback', idp_cert_fingerprint: '72:8A:6C:6B:63:35:3F:E0:BF:70:8D:41:0E:B7:02:CF:C5:86:53:24', idp_sso_target_url: 'https://proxy.eduteams.org/saml2sp/sso/redirect', issuer: 'https://example.gitlab.com', name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent', uid: ["urn:oasis:names:tc:SAML:attribute:subject-id"], email: ["urn:oid:0.9.2342.19200300.100.1.3",], first_name: ["urn:oid:2.5.4.42"], last_name: ["urn:oid:2.5.4.4"] }, # STEP(s) "Required Groups", "Admin Groups", "Auditor Groups" groups_attribute: 'urn:oid:1.3.6.1.4.1.5923.1.1.1.7', # Only the following groups in the Test_VO will be able to access this Gitlab instance: # # - Developers # - Admins:Gitlab # - Admins:Gitlab:Auditors required_groups: [ 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Developers#eduteams.org', 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Developers#eduteams.org', 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Admins:Gitlab#eduteams.org', 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Admin:Gitlab:Auditors#eduteams.org', ], # Users from the following groups in the Test_VO will access this Gitlab instance as admins # # - Admins:Gitlab: admin_groups: [ 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Admins:Gitlab#eduteams.org', ], # Users from the following groups in the Test_VO will access this Gitlab instance as auditors: # # - Admins:Gitlab:Auditors audit_groups: [ 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Admins:Gitlab:Auditors#eduteams.org', ], # Users from the following gorup in the Test_VO will access the Gitlab instance external users # # - Guests # - Contractors external_groups: [ 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Guests#eduteams.org', 'urn:geant:eduteams.org:service:eduteams:group:Test_VO:Conractors#eduteams.org', ], } } ]
2. Once you edited the omniauth section of the /etc/gitlab/gitlab.rb file as above indicated, you need to reconfigure gitlab with the command:
sudo gitlab-ctl reconfigure
3. You should be able to check the SAML metadata URL of the Gitlab instance at https://<gitlab.example.com>/users/auth/saml/metadata .
<?xml version='1.0' encoding='UTF-8'?> <md:EntityDescriptor ID="_9edb3dae-0919-40ff-b7c0-bffc63ba032b" entityID="https://gitlab.example.com/" xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"> <md:SPSSODescriptor AuthnRequestsSigned="false" WantAssertionsSigned="false" protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol"> <md:NameIDFormat>urn:oasis:names:tc:SAML:2.0:nameid-format:persistent</md:NameIDFormat> <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://gitlab.example.com/users/auth/saml/callback" index="0" isDefault="true" /> <md:AttributeConsumingService index="1" isDefault="true"> <md:ServiceName xml:lang="en">Required attributes</md:ServiceName> <md:RequestedAttribute FriendlyName="Email address" Name="email" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:basic" isRequired="false" /> <md:RequestedAttribute FriendlyName="Full name" Name="name" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:basic" isRequired="false" /> <md:RequestedAttribute FriendlyName="Given name" Name="first_name" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:basic" isRequired="false" /> <md:RequestedAttribute FriendlyName="Family name" Name="last_name" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:basic" isRequired="false" /> </md:AttributeConsumingService> </md:SPSSODescriptor> </md:EntityDescriptor>
4. Congratulations, you have successfully configured your Gitlab instance for eduTEAMS. Now you can proceed to register your service following the steps described in Registering services on the eduTEAMS Service.
- No labels