Get the Guide to Modern IGA

ConductorOne docs

Manage external datasources

Leverage external datasources in S3 for ingesting app data or pushing SIEM logs

What are external data sources?

External datasources are S3 buckets and other file systems that ConductorOne has the permissions to read and write. External datasources can be used for:

  • Pushing audit logs for off-line storage
  • Pushing audit logs for consumption into your SIEM
  • Ingesting application data

Set up an S3 data source

This task requires:

  • Super Administrator role in ConductorOne
  • Ability to create an IAM Role in AWS

ConductorOne uses an IAM Trust relationship between your AWS Account and ConductorOne’s Service AWS Account for integrating to S3. This is the AWS-recommended method of sharing access to AWS Accounts. ConductorOne has a specially created and isolated AWS Account dedicated to the AWS integration.

Step 1: Get a ConductorOne-provided External ID for the AWS IAM Role

  1. Log into ConductorOne.

  2. In the navigation panel, open Admin and click Settings.

  3. On the External data sources tab, click Add data source.

  4. Choose who will own and manage this integration, then click Create and add details.

  5. The S3 bucket integration form opens. Copy and save the External ID generated for you by ConductorOne. You’ll use this value in Step 2.

Step 2: Create an AWS IAM Role for ConductorOne

  1. In a new browser tab, navigate to AWS and sign into your AWS account.

  2. Navigate to the Identity and Access Management (IAM) dashboard.

  3. Click Roles > Create Role.

  4. Select Custom Trust Policy and paste the following code into the Trust Policy JSON editor, replacing <EXTERNAL ID FROM C1> with the value you saved in Step 1.

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Effect": "Allow",
          "Principal": {
            "AWS": "arn:aws:iam::765656841499:role/ConductorOneS3DatasourceService"
          },
          "Action": "sts:AssumeRole",
          "Condition": {
            "StringEquals": {
              "sts:ExternalId": "<EXTERNAL ID FROM C1>"
            }
          }
        }
      ]
    }
    
  5. Click Next.

  6. Do not make any changes on the Add permissions page. Click Next.

  7. On the Name, review, and create page, in the Role Name field, enter ConductorOneIntegration.

  8. Optional. Add any tags relevant to your organization.

  9. Click Create role.

Step 3: Assign policy to ConductorOneIntegration AWS role

  1. Back on the Roles page, click on the newly created ConductorOneIntegration role to view the role’s details.

  2. Under Permissions Policies, click Add Permissions and select Create Inline Policy.

  3. Click the JSON Editor tab and paste in the following code:

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Effect": "Allow",
          "Action": [
            "s3:GetObject",
            "s3:GetObjectAttributes",
            "s3:HeadBucket",
            "s3:ListBucket", 
            "s3:GetBucketLocation", 
            "s3:PutObject"
          ],
          "Resource": [
            "arn:aws:s3:::<BUCKET NAME>",
            "arn:aws:s3:::<BUCKET NAME>/*"
          ]
        }
      ]
    }
    

If you plan to only use this s3 bucket for application data syncs and therefore need only be read only, you may omit

"s3:PutObject"

From the policy

  1. Click Review Policy.

  2. In the Name field, enter ConductorOnePermissions.

  3. Click Create policy.

  4. Copy and save the Role ARN for the newly created policy. The Role ARN is formed as arn:aws:iam::<UNIQUE STRING>:role/ConductorOneIntegration. You’ll use this value in Step 4.

    Detail view of the ConductorOneIntegration role, with the Role ARN copy function shown displaying ARN Copied.

Step 4: Configure the external data source in ConductorOne

  1. Return to the ConductorOne Settings > External data sources page if necessary and navigate to your newly created external data source.

  2. Paste the Role ARN you generated in Step 2 into the Role ARN field.

  3. Enter the name of the S3 bucket that contains the files you want to use in ConductorOne in the S3 bucket field.

  4. Click Save.