GoLand 2025.1 Help

Create a data source with Okta

Enable the Database Tools and SQL plugin

This functionality relies on the Database Tools and SQL plugin, which is bundled and enabled in GoLand by default. If the relevant features are not available, make sure that you did not disable the plugin.

  1. Press Ctrl+Alt+S to open settings and then select Plugins.

  2. Open the Installed tab, find the Database Tools and SQL plugin, and select the checkbox next to the plugin name.

In this tutorial, we will create an Amazon Redshift data source, configure it to use SAML authentication with Okta identity provider, and run a test connection to a database.

For more information about the integration and connection settings, refer to the following page: Authentication at Okta Docs.

Prerequisites

  • Your Amazon Redshift dashboard must have a Amazon Redshift cluster in it. For more information about the Amazon Redshift cluster, refer to Getting Started with Amazon Redshift.

  • AWS SSO has to be enabled for your AWS account.

  • Your AWS account has to be linked to your Okta account.

  • Before connecting to a Amazon Redshift database with Okta SSO authentication, make sure to install and set up the Okta Verify application first.

    Once the required software is set up and ready, you need to create a Amazon Redshift data source in GoLand and configure it to use it with Okta SSO authentication.

Create a data source

  1. In the Database tool window, click the New icon New on the toolbar and navigate to Data Source | Amazon Redshift.

    Create a new Amazon Redshift data source
  2. Check if there is a Download missing driver files link at the bottom of the connection settings area. Click this link to download drivers that are required to interact with a database. For a direct download link, refer to the JetBrains JDBC drivers page.

    The Download missing driver files link
  3. Specify the database connection details.

    1. In the Host field, type the port number. For example, examplecluster.abc123xyz789.us-west-2.redshift.amazonaws.com.

    2. In the Port field, type the URL to connect to your Amazon Redshift account with. In our case, it is 5439.

    3. In the User field, type the email address you use to log in to your Okta account.

    4. In the Password field, type your Okta account password.

    5. In the Database field, type the database name to which you want to connect. In our case, the database is dev.

    6. To the end of autogenerated URL in the JDBC URL field, add ? and the following properties separated with &:

      • plugin_name=<credentials_provider_class_name>: the SAML-based credential provider plugin you use for authentication. In this tutorial, we will use the Browser SAML plugin that can work with SAML-based identity providers: plugin_name=com.amazon.redshift.plugin.BrowserSamlCredentialsProvider.

      • login_url=<login_url>: the identity provider URL. In our case, it is the URL to the Okta login page: login_url=https://example.okta.com/app/example_1/abc012/sso/saml.

    So, our JDBC URL is as follows:

    jdbc:redshift:iam://examplecluster.abc123xyz789.us-west-2.redshift.amazonaws.com:5439/dev?plugin_name=com.amazon.redshift.plugin.BrowserSamlCredentialsProvider&login_url=https://example.okta.com/app/example_1/abc012/sso/saml

    Alternatively, type your JDBC URL in the URL field. The general URL to use is as follows:

    • Format:

      jdbc:redshift:iam://<cluster_name>.<additional_unique_identifier>.<cluster_region>.redshift.amazonaws.com:<port_number>/dev?plugin_name=<plugin_name>&login_url=<login_url>&user=<username>&password=<password>

    • Example:

      jdbc:redshift:iam://examplecluster.abc123xyz789.us-west-2.redshift.amazonaws.com:5439/dev?plugin_name=com.amazon.redshift.plugin.BrowserSamlCredentialsProvider&login_url=https://example.okta.com/app/example_1/abc012/sso/saml&user=<my_username>&password=<dummy_password>

  4. Click the Test Connection link at the bottom of the connection details area to initiate a test connection to your database.

    Test Connection link
  5. On the Okta website that opens in the browser, enter your user credentials and log in to your Okta account.

    Log in to your Okta account on the Okta website
  6. Once Okta confirms your identity, return to GoLand.

    Identity confirmation message from Okta
  7. In the IDE, click OK to save your new data source.

Database connection details
Last modified: 23 April 2025