是否可以使用ARM模板或脚本创建Azure Blob存储连接器?

问题描述 投票:0回答:1

我正在创建一个逻辑应用程序,它将对blob存储执行某些操作,因此它需要一个特定blob存储的连接器。我能够定义应该使用哪个连接器(提供其名称和其他属性),但是如果它还不存在,则模板无法部署。我知道我们可以通过逻辑应用程序设计器创建这些连接器,但我非常希望自动化该过程。因此问题是:

是否可以使用ARM模板或脚本部署/创建此连接器?

azure azure-logic-apps azure-blob-storage
1个回答
1
投票

你可以查看这篇与Logic App connector相关的帖子。

这是一个ARM模板,用于创建与blob存储的API连接:

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "azureBlobConnectionAPIName": {
      "type": "string",
      "metadata": {
        "description": "The name of the connection api to access the azure blob storage."
      }
    },
    "storageAccountName": {
      "type": "string",
      "metadata": {
        "description": "The Storage Account Name."
      }
    }    
  },
  "variables": {
    "storageAccountId": "[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccountName'))]"
  },
  "resources": [
    {
      "type": "Microsoft.Web/connections",
      "name": "[parameters('azureBlobConnectionAPIName')]",
      "apiVersion": "2016-06-01",
      "location": "[resourceGroup().location]",
      "scale": null,
      "properties": {
        "displayName": "[parameters('azureBlobConnectionAPIName')]",
        "parameterValues": {
          "accountName": "[parameters('storageAccountName')]",
          "accessKey": "[listKeys(variables('storageAccountId'),'2015-05-01-preview').key1]"
        },
        "api": {
          "id": "[concat('subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Web/locations/', parameters('defaultResourceLocation'), '/managedApis/azureblob')]"
        }
      },
      "dependsOn": []
    }
  ]
}
© www.soinside.com 2019 - 2024. All rights reserved.