All pages
Powered by GitBook
1 of 1

Loading...

Getting Started

Configure your data platform, protect your data, and register your metadata via the API

The integrations API is a REST API that allows you to integrate your remote data platform with Immuta so that Immuta can manage and enforce access controls on your data.

To configure an integration using the API, you must have the APPLICATION_ADMIN Immuta permission.

Configure your integration

Use the POST /integrations endpoint to configure the integration so that Immuta can enforce access controls on tables registered as Immuta data sources. See a section below for a sample request and details about configuring your integration.

Amazon Redshift Spectrum example

curl -X 'POST' \
    'https://www.organization.immuta.com/integrations/scripts/create' \
    -H 'accept: application/json' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
    -d '{
    "type": "Redshift",
    "autoBootstrap": false,
    "config": {
      "host": "organization.aws.amazon.com",
      "database": "immuta",
      "impersonation": {
        "enabled": false
      },
      "authenticationType": "userPassword",
      "username": "taylor@redshift.com",
      "password": "abc1234"
    }
    }'

Replace the values in the request with your Immuta URL and API key or bearer token, and change the config values to your own, where

  • host is the URL of your Redshift account.

  • database is the name of the that the Immuta system user will manage and store metadata in.

  • authenticationType is the type of authentication to use when connecting to Redshift.

  • username and password are the credentials for the system account that can act on Redshift objects and configure the integration.

You must manually returned in the response in your Redshift environment yourself before completing the configuration. See the for instructions on completing the setup or for more examples.

For information about the configuration payload, see the .

  1. .

  2. Copy the request example.

  3. Replace the values in the request with your Immuta URL and .

  4. Change the config

Replace the values in the request with your Immuta URL and , and change the config values to your own, where

  • host is the URL of your Azure Synapse Analytics account.

  • schema is the name of the Immuta-managed schema where all your secure views will be created and stored.

  • database is the name of an existing database where the Immuta system user will store all Immuta-generated schemas and views.

The example sets autoBootstrap to true, which grants Immuta one-time access to credentials to configure the resources in your Azure Synapse Analytics environment for you. If you set autoBootstrap to false, you must manually in your Azure Synapse Analytics environment yourself before making the request.

For more configuration examples, see the . For information about the configuration payload, see the .

  1. by either using the Google Cloud console or the provided Immuta script.

  2. Copy the request example. The example uses JSON format, but the request also accepts YAML.

  3. Replace the Immuta URL and with your own.

For more configuration examples, see the Configure a . For information about the configuration payload, see the .

Replace the values in the request with your Immuta URL and , and change the config values to your own, where

  • host is the URL of your Snowflake account.

  • warehouse is the default pool of Snowflake compute resources the Immuta system user will use to run queries and perform other Snowflake operations.

  • database is the name of a new empty database that the Immuta system user will manage and store metadata in.

The example sets autoBootstrap to true, which grants Immuta one-time access to credentials to configure the resources in your Snowflake environment for you. If you set autoBootstrap to false, you must manually in your Snowflake environment yourself before making the request.

For more configuration examples, see the . For information about the configuration payload, see the .

  1. Replace the values in the request with your Immuta URL and .

  2. Navigate to the Immuta App Settings page and click the Integrations tab.

  3. Click your enabled Starburst (Trino) integration and copy the configuration snippet displayed.

Map usernames and create policies before you register your metadata to ensure that policies are enforced on tables and views immediately.

  1. to Immuta to ensure Immuta properly enforces policies and audits user queries.

  2. Build global policies in Immuta to enforce access controls:

Register your metadata using the API or Immuta UI:

  • API how-to guides

See the following how-to guides for configuration examples and steps for creating, managing, or disabling your integration:

See the following reference guides for information about the integrations API endpoints, payloads, and responses:

values to your own, where
  • name is the name for the integration that is unique across all Amazon S3 integrations configured in Immuta.

  • awsAccountId is the ID of your AWS account.

  • awsRegion is the account's AWS region (such as us-east-1).

  • awsLocationRole is the AWS IAM role ARN assigned to the base access grants location. This is the role the AWS Access Grants service assumes to vend credentials to the grantee.

  • awsLocationPath is the base S3 location prefix that Immuta will use for this connection when registering S3 data sources. This path must be unique across all S3 integrations configured in Immuta.

  • awsAccessKeyId is the AWS access key ID of the AWS account configuring the integration.

  • awsSecretAccessKey is the AWS secret access key of the AWS account configuring the integration.

username and password are the username and password of the system account that can act on Azure Synapse Analytics objects and configure the integration.
Change the config values to your own, where
  • role is the Google Cloud role used to connect to Google BigQuery.

  • datasetSuffix is the suffix to postfix to the name of each dataset created to store secure views. This string must start with an underscore.

  • dataset is the name of the BigQuery dataset to provision inside of the project for Immuta metadata storage.

  • location is the dataset's location, which can be any valid GCP location (such as us-east-1).

  • credential is the Google BigQuery service account JSON keyfile credential content. See the for guidance on generating and downloading this keyfile.

authenticationType is the type of authentication to use when connecting to Snowflake.
  • username and password are credentials of a Snowflake account attached to a role with these privileges. These credentials are not stored; they are used by Immuta to configure the integration.

  • role is a Snowflake role that has been granted these privileges.

  • Follow the steps in the customize the Immuta system access control plugin page to add the configuration in the appropriate immuta-access-control.properties file to finish configuring your cluster.

    Create subscription policies in the UI
  • Create data policies in the UI

  • Snowflake

  • Starburst (Trino)

  • UI how-to guides:

    • Amazon S3

    • Azure Synapse Analytics

    • Google BigQuery

  • Snowflake integration API reference

  • Starburst (Trino) integration API reference

  • curl -X 'POST' \
        'https://www.organization.immuta.com/integrations' \
        -H 'accept: application/json' \
        -H 'Content-Type: application/json' \
        -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
        -d '{
        "type": "Native S3",
        "autoBootstrap": false,
        "config": {
            "name": "S3 integration",
            "awsAccountId": "123456789",
            "awsRegion": "us-east-1",
            "awsLocationRole": "arn:aws:iam::123456789:role/access-grants-instance-role",
            "awsLocationPath": "s3://",
            "authenticationType": "accessKey",
            "awsAccessKeyId": "123456789",
            "awsSecretAccessKey": "123456789"
        }
        }'
    curl -X 'POST' \
        'https://www.organization.immuta.com/integrations' \
        -H 'accept: application/json' \
        -H 'Content-Type: application/json' \
        -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
        -d '{
        "type": "Azure Synapse Analytics",
        "autoBootstrap": true,
        "config": {
            "host": "organization.azure.com",
            "schema": "immuta",
            "database": "sample_database",
            "username": "taylor@synapse.com",
            "password": "abc1234",
            "authenticationType": "userPassword"
        }
        }'
    curl -X 'POST' \
        'https://www.organization.immuta.com/integrations' \
        -H 'accept: application/json' \
        -H 'Content-Type: application/json' \
        -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
        -d '{
        "type": "Google BigQuery",
        "autoBootstrap": false,
        "config": {
            "role": "immuta",
            "datasetSuffix": "_secureView",
            "dataset": "immuta",
            "location": "us-east-1",
            "credential": "{\"type\":\"service_account\",\"project_id\":\"innate-conquest-123456\",\"private_key_id\":\"9163c12345690924f5dd218ff39\",\"private_key\":\"-----BEGIN PRIVATE KEY-----\nXXXXXXXro0s\n/yQlPQijowkccmrmWJyr93kdLnwJzBvLHCto/+W\ncvF2ygX9oM/dyUK//z//4nptMp+Ck//Yw3D4rIBwGu4DWiR1qRnf\nDoGyXfThPTQ==\n-----END PRIVATE KEY-----\n\",\"client_email\":\"service-account-id@innate-conquest-123456.iam.gserviceaccount.com\",\"client_id\":\"1166290***432952487857\",\"auth_uri\":\"https://accounts.google.com/o/oauth2/auth\",\"token_uri\":\"https://oauth2.googleapis.com/token\",\"auth_provider_x509_cert_url\":\"https://www.googleapis.com/oauth2/v1/certs\",\"client_x509_cert_url\":\"https://www.googleapis.com/robot/v1/metadata/x509/service-account-id%40innate-conquest-123456.iam.gserviceaccount.com\",\"universe_domain\":\"googleapis.com\"}"
        }
        }'
    curl -X 'POST' \
        'https://www.organization.immuta.com/integrations' \
        -H 'accept: application/json' \
        -H 'Content-Type: application/json' \
        -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
        -d '{
        "type": "Snowflake",
        "autoBootstrap": true,
        "config": {
            "host": "organization.us-east-1.snowflakecomputing.com",
            "warehouse": "SAMPLE_WAREHOUSE",
            "database": "SNOWFLAKE_SAMPLE_DATA",
            "authenticationType": "userPassword",
            "username": "taylor@snowflake.com",
            "password": "abc1234",
            "role": "ACCOUNTADMIN"
        }
        }'
    curl -X 'POST' \
        'https://www.organization.immuta.com/integrations' \
        -H 'accept: application/json' \
        -H 'Content-Type: application/json' \
        -H 'Authorization: 846e9e43c86a4ct1be14290d95127d13f' \
        -d '{
        "type": "Trino"
        }'

    Amazon S3 example

    Private preview: This integration is available to select accounts. Contact your Immuta representative for details.

    Azure Synapse Analytics example

    Google BigQuery view-based example

    Private preview: This integration is available to all accounts.

    Snowflake example

    Starburst (Trino) example

    Protect your data

    Register metadata

    Additional resources

    How-to guides

    Reference guides

    existing or new database
    run the bootstrap script
    Configure an Amazon Redshift Spectrum integration guide
    Integration payload reference guide
    Set up an Access Grants instance and IAM roles
    API key or bearer token
    API key or bearer token
    run the bootstrap script
    Configure an Azure Synapse Analytics integration guide
    Integration payload reference guide
    Create a Google Cloud service account and role
    API key
    Google BigQuery view-based integration guide
    Integration payload reference guide
    API key or bearer token
    run the bootstrap script
    Configure a Snowflake integration guide
    Integration payload reference guide
    API key or bearer token
    Map usernames
    Create policies via the API
    Amazon Redshift Spectrum
    Amazon S3
    Amazon Redshift Spectrum integration API reference
    Amazon S3 integration API reference
    Azure Synapse Analytics integration API reference
    Google BigQuery integration API reference
    Integrations API endpoints
    Integrations API payloads
    Integrations API response schema
    HTTP status codes and error messages
    Azure Synapse Analytics
    Google documentation