Build Your Security Model - Global vs Per User Credentials

Most SQL connections require credentials. When configuring a connection to a cloud object storage or SQL database, you can configure global or per-user credentials. This article discusses the advantages and disadvantages of each type of authentication mechanism.

Credentials section of the Connections tab within DSS settings.

Global Credentials

Global credentials consists of using a dedicated service account to connect to and interact with the data inside the distant system. When configured, every call made to the distant system is performed with the dedicated service account.

There are several types of service accounts, including the following:

Advantages

  • Only one authorization configuration to manage on the remote system.

  • Password not shared with users.

    • To ensure the password is not shared with users, set the security parameter “Details readable by” to None. This parameter is found in the connection configuration.

  • No multiple user accounts to manage. Less overhead, more security.

  • Within Dataiku DSS (DSS), it is still possible to manage which user groups are allowed to use the connection.

  • DSS includes a granular audit trail that logs all actions performed by the user in DSS.

Disadvantages

  • No granular audit trail on the remote system. However, in most cases, the Amazon S3 service keeps a track of the frontend user name in the principalId.

  • No granular authorization. Every user who is allowed to interact through this connection is granted the same level of authorization.

Per-User Credentials

For DSS connections that require credentials, you can configure the connection so that instead of having a global service credential, each user can enter personal credentials.

When per-user credentials is activated, every user will specify their own credentials to connect to the remote system. Each action performed on the database by the user will use the Dataiku user’s personal credentials.

To specify their credentials, the Dataiku user visits the Profile and settings menu and then finds Connection credentials by navigating to the Credentials tab.

Personal credentials section of a Dataiku user's profile.

There are several types of per-user credentials, including the following:

  • Username and password combination. This applies to most database systems such as PostgreSQL and Oracle.

  • Shared key or keypair for cloud object storage.

  • Oauth2 credentials for more advanced authentication. Visit Connecting to data to find out more about specific connections and authenticating using Oauth2.

Advantages

  • Fine-grained access management on the remote system.

  • Granular audit trail on the remote system.

  • For Oauth authentication, the ability to rely on a centralized identity provider (IdP).

Disadvantages

  • Multiple accounts to manage.

  • Passwords are known by users which presents security risks.

  • Oauth2 mechanisms are complex to implement.

  • Cannot test the connection during configuration.