Atlassian OmniAuth Provider (FREE SELF)

To enable the Atlassian OmniAuth provider for passwordless authentication you must register an application with Atlassian.

Atlassian application registration

  1. Go to https://developer.atlassian.com/console/myapps/ and sign-in with the Atlassian account to administer the application.
  2. Select Create a new app.
  3. Choose an App Name, such as 'GitLab', and select Create.
  4. Note the Client ID and Secret for the GitLab configuration steps.
  5. On the left sidebar under APIS AND FEATURES, select OAuth 2.0 (3LO).
  6. Enter the GitLab callback URL using the format https://gitlab.example.com/users/auth/atlassian_oauth2/callback and select Save changes.
  7. Select + Add in the left sidebar under APIS AND FEATURES.
  8. Select Add for Jira platform REST API and then Configure.
  9. Select Add next to the following scopes:
    • View Jira issue data
    • View user profiles
    • Create and manage issues

GitLab configuration

  1. On your GitLab server, open the configuration file:

    For Omnibus GitLab installations:

    sudo editor /etc/gitlab/gitlab.rb

    For installations from source:

    sudo -u git -H editor /home/git/gitlab/config/gitlab.yml
  2. See Configure initial settings for initial settings to enable single sign-on and add atlassian_oauth2 as an OAuth provider.

  3. Add the provider configuration for Atlassian:

    For Omnibus GitLab installations:

    gitlab_rails['omniauth_providers'] = [
      {
        name: "atlassian_oauth2",
        # label: "Provider name", # optional label for login button, defaults to "Atlassian"
        app_id: "YOUR_CLIENT_ID",
        app_secret: "YOUR_CLIENT_SECRET",
        args: { scope: "offline_access read:jira-user read:jira-work", prompt: "consent" }
      }
    ]

    For installations from source:

    - { name: "atlassian_oauth2",
        # label: "Provider name", # optional label for login button, defaults to "Atlassian"
        app_id: "YOUR_CLIENT_ID",
        app_secret: "YOUR_CLIENT_SECRET",
        args: { scope: "offline_access read:jira-user read:jira-work", prompt: "consent" }
     }
  4. Change YOUR_CLIENT_ID and YOUR_CLIENT_SECRET to the Client credentials you received in application registration steps.

  5. Save the configuration file.

  6. For the changes to take effect:

On the sign-in page there should now be an Atlassian icon below the regular sign in form. Select the icon to begin the authentication process.

If everything goes right, the user is signed in to GitLab using their Atlassian credentials.