Skip to content

Instantly share code, notes, and snippets.

@tonyjoanes
Created July 14, 2025 15:26
Show Gist options
  • Save tonyjoanes/48a1286aa08281b792c4762ca36a7c5c to your computer and use it in GitHub Desktop.
Save tonyjoanes/48a1286aa08281b792c4762ca36a7c5c to your computer and use it in GitHub Desktop.
flowchart TD
  A[SQL/Blob Storage Source] --> B[ADF Pipeline: Copy Data activity]
  B --> C[Azure Blob Storage: Raw CSV file]
  C --> D[ADF Pipeline: Custom Activity (PGPEncryptor.exe)]
  D --> E[Azure Batch Pool VM: Runs PGPEncryptor with inputs]
  E --> F[PGPEncryptor: Reads CSV, Public Key, Encrypts with Bouncy Castle]
  F --> G[Azure Blob Storage: Encrypted CSV file (.pgp)]
  G --> H[ADF Pipeline: Next Activity (e.g., Copy to SFTP/Salesforce)]
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment