DocumentationRecipesReferenceGraphQLChangelog
Log In

Creating an AWS S3 integration

To use remote files in projects, you must first create an integration. Then in each one of your projects, you can define a connector between the integration and the project.

πŸ“˜

Only organization admins can manage remote integrations.

Creating the integration in Kili

  1. In Kili, click on your name in the top-right corner of the Kili app interface, and then go to Organization Management > Integrations.

  2. Click New.

  3. Select AWS - S3.

  4. Provide your Role external id:

    1. If you are creating an AWS integration for the first time, then select the newly-generated identifier (marked as New).
    2. If you created an AWS integration before, you can select an existing identifier to avoid creation of new role in your AWS IAM.
  5. If you already created the S3 access point on AWS, then you can paste its ARN in the Access point ARN field. Otherwise you can fill it with this placeholder: arn:aws:s3:region:000000000000:accesspoint/placeholder, and replace it later with the real value.

  6. If you already created the role in AWS to let Kili get access to your buckets, then you can paste its ARN in the Role ARN field. Otherwise you can fill it with this placeholder: arn:aws:iam::000000000000:role/placeholder, and replace it later with the real value.

  7. [optional] Tick the I authorize Kili Technology to process my files on its servers to enable features that require such processing checkbox.

AWS setup

S3 Bucket and Access Point

  1. Go to your S3 Bucket, and in Permissions set the CORS. This way, Kili front-end will be able to fetch files. Here is the policy to add:
 [  
    {  
        "AllowedHeaders": [  
            "*"  
        ],  
        "AllowedMethods": [  
            "GET"  
        ],  
        "AllowedOrigins": [  
            "<https://cloud.kili-technology.com>"  
        ],  
        "ExposeHeaders": []  
    }  
]
 [  
    {  
        "AllowedHeaders": [  
            "*"  
        ],  
        "AllowedMethods": [  
            "GET"  
        ],  
        "AllowedOrigins": [  
            "<https://cloud.eastus.kili-technology.com>"  
        ],  
        "ExposeHeaders": []  
    }  
]
  1. Create an access point for Kili in your S3 bucket. Refer to Creating access points.

🚧

Enable Internet access but block public access.

IAM

  1. Create a Policy to give rights on the access point and the bucket. Refer to this example json file with a policy summary for a bucket named my-bucket with an access point named kili-access-point whose ARN is arn:aws:s3:eu-west-3:999888496268:accesspoint/my-access-point-name:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:ListBucket",
                "s3:GetObject"
            ],
            "Resource": [
                "arn:aws:s3:::my-bucket",
              	"arn:aws:s3:::my-bucket/*",
                "arn:aws:s3:region:000000000000:accesspoint/kili-access-point-name",
              	"arn:aws:s3:region:000000000000:accesspoint/kili-access-point-name/*"
            ]
        }
    ]
}
  1. Create a Role or alternatively attach newly created policy to an existing one.
    • Make sure to select AWS account as entity type and tick the Require external ID checkbox.
    • Paste the role external id created previously in the Kili integration

The selected trusted entities should look like this:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "sts:AssumeRole",
            "Principal": {
                "AWS": "999888496268"
            },
            "Condition": {
                "StringEquals": {
                    "sts:ExternalId": "<ROLE EXTERNAL ID>"
                }
            }
        }
    ]
}

Replace <ROLE EXTERNAL ID> by the role external ID created for the integration in Kili.

πŸ‘

You are now ready to synchronize data with a project.

AWS limitations and tips

  • When dealing with multiple AWS integrations in Kili, you can make AWS IAM admin tasks easier by:
    • reusing a common role (and so using a unique role external id)
    • updating a common policy to list all buckets used in Kili

🚧

If more than 1,000 folders exist in the same directory, Kili won't be able to list them all.