我有一个现有的Service Bus,其中一个队列和事件中心使用Azure Resource Manager进行部署。
现在,我有兴趣使用Azure PowerShell检索主键和连接字符串,而不使用ServiceBus.dll。有可能??
作为一种解决方法,我创建了一个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
请注意,属性名称 connectionString 和 primaryKey 与我的模板文件中定义的相同
编辑2 如果我重新运行ARM模板以第二次部署事件中心,则会出现以下错误。
除了使用ARM模板查询详细信息之外,我找不到任何其他选项。
答案 0 :(得分:2)
我不知道你在做什么有什么问题。在我看来,资源管理器模板本质上是增量的。因此,您可以使用相同的资源创建模板来创建现有的服务总线。如果属性相同则会保留现有资源,并返回相关资源的连接字符串和主键。
我需要自动创建服务总线和队列,并分离发送/侦听共享访问策略。您可以使用PowerShell本地检索服务总线本身的连接字符串,而不使用Get-AzureSBAuthorizationRule使用.Net ServiceBus.dll程序集,但由于当前的错误,这在队列级别不起作用。
我尝试使用ServiceBus.dll来创建共享访问策略,但有时它会随机失败,但如果你之后立即再次运行它会随后工作。我也尝试过资源管理器模板,但之前你必须传入你自己生成的密钥。现在我看到Microsoft为您生成了这些,但您仍然试图以自动方式获取密钥,因此我喜欢您的解决方案。
但有一个问题,您是否可以捕获资源管理器模板输出并将它们传递回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]"
} } }
但我这样称呼我的模板:
New-AzureRMResourceGroupDeployment -ResourceGroupName $ ResourceGroupName -TemplateFile“$ scripts_folder $ SB_create_script”-TemplateParameterObject` @ {servicebusNamespace = $ servicebusNamespace; notificationssmsqueue = $ NotificationSMSqueue}
答案 1 :(得分:1)
这是获取您所寻求信息的正确方法。资源管理器提供了与所有服务进行交互的通用接口。这是Portal访问服务的方式,每个语言SDK只是对您创建的类似请求的包装器。
我通常使用Python或java SDK,但我被告知NodeJS是一种非常简单的方法来包装ARM调用的Web API,以构建类似于您所做的类似的调用,如果您正在寻找无ARM这样做的方式。