saml認証ボタンを2つ実装したい
現在GitLabにSAML認証を実装しようとgitlab.rbファイルを編集しています。
1つ実装することはできたのですが、2つ実装して各ボタンで違う認証画面にリダイレクトできるようにしたいです。
まずはそれが可能なのか、また可能でしたら実装方法をお伺いしたいです。
該当のソースコード
gitlab_rails['omniauth_enabled'] = true gitlab_rails['omniauth_allow_single_sign_on'] = ['saml'] gitlab_rails['omniauth_block_auto_created_users'] = false gitlab_rails['omniauth_auto_link_saml_user'] = true gitlab_rails['omniauth_providers'] = [ { name: 'saml', label: 'EXAMPLE LOGIN', # ログインボタンのラベル。日本語は利用できないようです args: { assertion_consumer_service_url: 'https://gitlab.example.com/users/auth/saml/callback', idp_cert: '-----BEGIN CERTIFICATE----- MII**** -----END CERTIFICATE-----', # Keycloakで取得した証明書 idp_sso_target_url: 'https://keycloak.example.com/auth/realms/YOUR_REALM/protocol/saml', issuer: 'https://gitlab.example.com', name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent', attribute_statements: { username: ['username'] } # GitLabのユーザ名で使う属性を指定 (optional) } } ]
試したこと
gitlab_rails['omniauth_providers']に対し
{
name: 'saml',
label: 'EXAMPLE LOGIN', # ログインボタンのラベル。日本語は利用できないようです
args: {
assertion_consumer_service_url: 'https://gitlab.example.com/users/auth/saml/callback',
idp_cert: '-----BEGIN CERTIFICATE-----
MII****
-----END CERTIFICATE-----', # Keycloakで取得した証明書
idp_sso_target_url: 'https://keycloak.example.com/auth/realms/YOUR_REALM/protocol/saml',
issuer: 'https://gitlab.example.com',
name_identifier_format: 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent',
attribute_statements: { username: ['username'] } # GitLabのユーザ名で使う属性を指定 (optional)
}
}
の部分を下にもうひとつ連ねてみましたが特に変化はなく、1つのブロック?セクション?内に収めてみてもダメでした。
ご存じの方、ご教授いただけますよう、よろしくお願いいたします。
あなたの回答
tips
プレビュー