Decryption pgp file in Azure gen2 via ADF

Ruby0911 6 Reputation points
2020-09-11T16:29:58.903+00:00

Hi there,
I have a encrypted pgp file in Azure gen2 and wanna decrypt it by using any functionality in Data Factory, is there anything available for doing that?

Thanks.

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,542 questions
0 comments No comments
{count} vote

2 answers

Sort by: Most helpful
  1. KranthiPakala-MSFT 46,422 Reputation points Microsoft Employee
    2020-09-13T18:21:35.403+00:00

    Thank you @John Aherne , for sharing your inputs and helping the community.

    Hi @Ruby0911 ,

    Welcome to Microsoft Q&A platform and thanks for using this forum.

    Unfortunately there is no out of box feature in Azure Data factory to perform encryption/decryption of files. Below are couple of feature request suggestions submitted by other Azure users. Please feel free to comment and/or up-vote the user voice items to increase the priority of feature implementation.

    As @John Aherne , called out, to move data to/from a data store that Data Factory does not support, or to transform/process data in a way that isn't supported by Data Factory, you can create a Custom activity with your own data movement or transformation logic and use the activity in a pipeline. Or another option you could try out is Azure Function Activity.

    Additional info :
    Here are few related helpful resources:

    Hope this info helps.

    Thank you

    ----------

    Please do consider to click on "Accept Answer" and "Upvote" on the post that helps you, as it can be beneficial to other community members.

    1 person found this answer helpful.

  2. John Aherne 516 Reputation points
    2020-09-13T17:42:55.013+00:00

    You can call a batch service via a custom activity to run your decryption.
    https://learn.microsoft.com/en-us/azure/data-factory/transform-data-using-dotnet-custom-activity

    0 comments No comments