如何在ADF版本中为Azure密钥库创建链接服务2



我已经创建了一个管道,该管道将将数据从一个blob复制到另一个blob&我想将Azure Data Factory 2与Key Vault一起使用。我该怎么做?

您需要首先创建Azure Key Vault链接服务 -

{
    "name": "AzureKeyVaultLinkedService",
    "properties": {
    "type": "AzureKeyVault",
    "typeProperties": {
        "baseUrl": "https://<azureKeyVaultName>.vault.azure.net"
        }
    }
}

然后,当您创建Azure Blob Storage LinkedService时,只需将Azure Key Vault属性引用connectiongStringsasUri即可引用密钥库中存储的秘密 -

{
    "name": "AzureStorageLinkedService",
    "properties": {
        "type": "AzureStorage",
        "typeProperties": {
            "connectionString": {
                "type": "AzureKeyVaultSecret",
                "secretName": "<secret name in AKV>",
                "store":{
                    "referenceName": "<Azure Key Vault linked service>",
                    "type": "LinkedServiceReference"
                }
            }
        },
        "connectVia": {
            "referenceName": "<name of Integration Runtime>",
            "type": "IntegrationRuntimeReference"
        }
    }
}

可以在此处找到的详细信息。

相关内容

  • 没有找到相关文章

最新更新