Cloud Storage

Store platform configurations, scripts, and data files in AWS S3, Google Cloud Storage, or Azure Blob Storage.

What You’ll Find Here

  • AWS S3 - Store files in Amazon S3

  • Google Cloud Storage - Use GCS for file storage

  • Azure Blob Storage - Microsoft Azure storage

  • CSV Files - Working with CSV files

  • Configuration - Set up cloud storage access

All Topics

Use Cases

Store Custom Scripts

Store JavaScript scripts for Scripting Transformer in S3:

- columns:
    - "custom_field"
  type: Scripting
  params:
    mode: MASKING
    code_location: "s3://my-bucket/scripts/custom_transform.js"

CSV Generation

Generate CSV files to cloud storage:

output:
  type: csv
  location: "s3://my-bucket/output/data.csv"