gpt4 book ai didi

azure - 如何在 ADF 版本 2 中为 azure key Vault 创建链接服务?

转载 作者:行者123 更新时间:2023-12-03 05:49:56 25 4
gpt4 key购买 nike

我必须创建一个管道,将数据从一个 Blob 复制到另一个 Blob,并且我想将 Azure 数据工厂版本 2 与 Key Vault 一起使用。我怎样才能做到这一点?

最佳答案

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

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

然后,当您创建 Azure Blob Storage 链接服务时,只需引用 connectiongStringsasUri< 的 Azure Key Vault 属性即可 引用存储在 key 保管库中的 secret -

{
"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"
}
}
}

详细信息可查here .

关于azure - 如何在 ADF 版本 2 中为 azure key Vault 创建链接服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49027838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com