5

我有一个现有的服务总线,其中一个队列和事件中心使用 Azure 资源管理器部署。

现在我有兴趣在不使用 ServiceBus.dll 的情况下使用 Azure PowerShell 检索主键和连接字符串。可能吗??

作为一种解决方法,我创建了一个 ARM 模板,它不部署任何东西,只是查询现有资源并检索我需要的信息。以下模板检索特定服务总线命名空间的事件中心/队列的连接字符串和主键

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "serviceBusNamespace": {
            "type": "string",
            "minLength": 1,
            "metadata": {
                "description": "The name of the service bus namespace to create."
            }
        },
        "resourceName": {
            "type": "string",
            "minLength": 1,
            "metadata": {
                "description": "The name of the resource to be retreived."
            }
        },
        "resourceType": {
            "type": "string",
            "minLength": 1,
            "allowedValues": [
                "queues",
                "eventhubs"
            ],
            "metadata": {
                "description": "The type of the resource"
            }
        },
        "policy": {
            "type": "string",
            "minLength": 1,
            "defaultValue": "ManagePolicy",
            "allowedValues": [
                "ManagePolicy",
                "SendPolicy",
                "ListenPolicy"
            ],
            "metadata": {
                "description": "The type of the resource"
            }
        }
    },
    "variables": {
    },
    "resources": [ ],
    "outputs": {
        "connectionString": {
            "type": "string",
            "value": "[listKeys(resourceId(concat('Microsoft.ServiceBus/namespaces/',parameters('resourceType'),'/authorizationRules'),parameters('serviceBusNamespace'),parameters('resourceName'),parameters('policy')),'2015-08-01').primaryConnectionString]"
        },
        "primaryKey": {
            "type": "string",
            "value": "[listKeys(resourceId(concat('Microsoft.ServiceBus/namespaces/',parameters('resourceType'),'/authorizationRules'),parameters('serviceBusNamespace'),parameters('resourceName'),parameters('policy')),'2015-08-01').primaryKey]"
        }
    }
}

使用 ARM 模板查询资源而不实际部署任何东西是否滥用?

编辑 要在 PowerShell 中捕获 ARM 模板的输出,请使用以下代码

$ep = New-AzureRmResourceGroupDeployment -Name "getEventHub" -ResourceGroupName myResourceGroup -Mode Incremental -TemplateFile getEventHub.json -TemplateParameterFile getEventHub.param.json
$RuleConnString = $ep.Outputs.connectionString.value
$RulePrimaryKey = $ep.Outputs.primaryKey.value

请注意,属性名称connectionStringprimaryKey与我的模板文件中定义的相同

编辑 2 如果我再次运行 ARM 模板以第二次部署事件中心,则会收到以下错误。在此处输入图像描述

除了使用 ARM 模板查询详细信息外,我找不到任何选项。

4

2 回答 2

4

我看不出你在做什么有什么问题。在我看来,资源管理器模板本质上是增量的。因此,您可以编写一个模板来创建具有相同资源的现有服务总线。如果属性相同,那么它将保持现有资源不变,并返回相关资源的连接字符串和主键。

我需要自动创建服务总线和队列以及单独的发送/侦听共享访问策略。您可以使用 PowerShell 本机检索服务总线本身上的连接字符串,而无需使用 Get-AzureSBAuthorizationRule 使用 .Net ServiceBus.dll 程序集,但由于仍然存在当前错误,这在队列级别不起作用。

我尝试使用 ServiceBus.dll 来创建共享访问策略,但有时它会随机失败,但如果您之后立即再次运行它,它随后会工作。我也尝试过资源管理器模板,但之前您必须传入您自己生成的密钥。现在我看到微软为你生成了这些,但你仍然试图以自动化的方式获取密钥,所以我喜欢你的解决方案。

但是有一个问题,您能否捕获资源管理器模板输出并将它们传递回 PowerShell 脚本,您知道吗?

干杯

{   "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0",   "parameters": {
    "servicebusNamespace": {
      "type": "string",
      "metadata": {
        "description": "The service bus namespace"
      }
    },
    "notificationssmsqueue": {
      "type": "string",
      "metadata": {
        "description": "Notifications SMS queue"
      }
    }   },   "variables": {
    "location": "[resourceGroup().location]",   },   "resources": [
    {
      "apiVersion": "2015-08-01",
      "name": "[parameters('servicebusNamespace')]",
      "type": "Microsoft.ServiceBus/namespaces",
      "location": "[variables('location')]",
      "properties": {
        "messagingSku": 2
      },
      "resources": [
        {
          "apiVersion": "2015-08-01",
          "name": "[parameters('notificationssmsqueue')]",
          "type": "Queues",
          "dependsOn": [
            "[concat('Microsoft.ServiceBus/namespaces/', parameters('servicebusNamespace'))]"
          ],
          "properties": {
            "path": "[parameters('notificationssmsqueue')]"
          },
          "resources": [
            {
              "apiVersion": "2015-08-01",
              "name": "[concat(parameters('notificationssmsqueue'),'.listen')]",
              "type": "AuthorizationRules",
              "dependsOn": [
                "[parameters('notificationssmsqueue')]"
              ],
              "properties": {
                "keyName": "[concat(parameters('notificationssmsqueue'),'.listen')]",
                "claimType": "SharedAccessKey",
                "claimValue": "None",
                "rights": [ "Listen" ],
                "revision": -1
              }
            },
            {
              "apiVersion": "2015-08-01",
              "name": "[concat(parameters('notificationssmsqueue'),'.send')]",
              "type": "AuthorizationRules",
              "dependsOn": [
                "[parameters('notificationssmsqueue')]"
              ],
              "properties": {
                "keyName": "[concat(parameters('notificationssmsqueue'),'.send')]",
                "claimType": "SharedAccessKey",
                "claimValue": "None",
                "rights": [ "Send" ],
                "revision": -1
              }
            }
          ]
        }
      ]
    }   ],   "outputs": {
    "connectionString": {
      "type": "string",
      "value": "[listKeys(resourceId(concat('Microsoft.ServiceBus/namespaces/AuthorizationRules'),parameters('serviceBusNamespace'),'RootManageSharedAccessKey'),'2015-08-01').primaryConnectionString]"
    },
    "smsSendPrimaryKey": {
      "type": "string",
      "value": "[listKeys(resourceId(concat('Microsoft.ServiceBus/namespaces/Queues/AuthorizationRules'),parameters('serviceBusNamespace'),parameters('notificationssmsqueue'),concat(parameters('notificationssmsqueue'),'.send')),'2015-08-01').PrimaryKey]"
    },
    "smsListenPrimaryKey": {
      "type": "string",
      "value": "[listKeys(resourceId(concat('Microsoft.ServiceBus/namespaces/Queues/AuthorizationRules'),parameters('serviceBusNamespace'),parameters('notificationssmsqueue'),concat(parameters('notificationssmsqueue'),'.listen')),'2015-08-01').PrimaryKey]"
    }   } }

但我这样称呼我的模板:

新 AzureRMResourceGroupDeployment -ResourceGroupName $ResourceGroupName -TemplateFile "$scripts_folder$SB_create_script" -TemplateParameterObject `@{ servicebusNamespace = $servicebusNamespace; 通知smsqueue = $NotificationSMSqueue }

于 2016-03-30T21:51:16.993 回答
2

这是获取您正在寻找的信息的正确方法。资源管理器提供了一个与所有服务交互的通用接口。这是门户访问服务的方式,并且每个语言 SDK 只是对与您创建的请求类似的请求的包装器。

我通常使用 Python 或 Java SDK,但有人告诉我 NodeJS 是一种非常简单的方法来包装 ARM 调用的 Web API,以构建类似于您所做的类似调用,如果您正在寻找一种非 ARM 方式来做这个。

于 2016-04-10T19:04:19.560 回答