Skip to content

IP Addresses for Import and Export Integrations

You can use the IP addresses in this article to selectively open your firewalls (or public cloud equivalent, such as security groups in AWS) to allow the Treasure Data servers to reach your systems.

  • Data Connector IP addresses
    You whitelist these IP addresses to allow Treasure Data's input integrations to pull data from one of your systems. For example, to ingest data from your MySQL database.

  • Export Integration IP addresses
    You must whitelist the IP addresses that are listed in Export Integrations so that Treasure Data output integrations can push data from a query into one of your systems. For example, a Treasure Data query writes the query result to your MySQL database.

This topic contains:

Tokyo Region Elastic IP Addresses

Import IntegrationsExport Integrations
52.198.232.20152.68.7.150
52.198.68.17952.192.41.224
13.112.195.1413.230.126.99
52.194.115.25118.182.248.35
54.249.135.6052.194.65.171

US Region Elastic IP Addresses

Import IntegrationExport Integrations
23.21.102.8154.204.6.216
23.21.103.12454.221.226.77
23.23.126.18454.221.228.0
23.23.173.17354.221.228.51
23.23.88.9454.221.228.55
50.16.198.12154.221.228.67
50.16.200.3054.235.247.100
50.16.223.6954.243.141.45
54.83.21.18254.243.183.61
54.83.52.19954.243.201.254
107.20.134.3854.243.203.218
107.20.142.10454.243.203.90
107.20.144.17854.243.224.39
107.20.145.7554.243.234.184
107.20.147.5854.243.31.47
107.20.148.054.83.55.51

EU01 Region Elastic IP Addresses

Import IntegrationExport Integrations
3.120.79.15935.159.43.93
3.120.50.2918.197.138.93
3.120.68.1518.194.191.188

AP02 Region Elastic IP Addresses

Import IntegrationExport Integrations
52.79.160.4215.165.146.182
54.180.65.24315.165.156.3
15.165.210.1415.164.68.17

S3 Bucket Policy Configuration for Export Integrations

When your S3 bucket is in the same region as your Treasure Data endpoint, you must set a VPC ID to allow TD's access to the bucket and still restrict access.

RegionVPC Value
TOKYOvpc-e630c182
USvpc-df7066ba
EU01vpc-f54e6a9e
AP02vpc-00ca316f964009497
Sample Code
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Treasure-Data-eu01-Result-Output",
      "Action": [
        "s3:AbortMultipartUpload",
        "s3:PutObject"
      ],
      "Effect": "Deny",
      "Resource": [
        "arn:aws:s3:::your-bucket",
        "arn:aws:s3:::your-bucket/*"
      ],
      "Condition": {
        "StringNotEqualsIfExists": {
          "aws:sourceVpc": "vpc-f54e6a9e"
        }
      },
      "Principal": "*"
    }
  ]
}

Replace "arn:aws:s3:::your-bucket" and "arn:aws:s3:::your-bucket/*" with your actual S3 bucket's ARN.