部署后,队列名称不与Azure逻辑应用程序结合
我正在尝试将Azure Logic应用程序部署到两个环境 ie。 dev and prod。
我正在为逻辑应用程序和环境使用一个JSON文件,我有不同的参数文件。 Azure管道根据环境选择参数文件。参数文件中定义的所有参数在部署期间都受到限制,但是我对队列名称有问题。
这就是我在参数文件中定义参数的方式:
"parameters": {
"logicAppName": {
"value": "Test-App-dev"
},
"QueueName": { "value": "testdev" }
}
这就是逻辑应用程序中的路径变量中使用的方式:
但是部署后,排队名称在Azure Portal上没有反映。这就是Azure门户中的样子:
I am trying to deploy the Azure logic app to two environments ie. dev and prod.
I am using a single json file for the logic app and for the environments I have different parameter files. The Azure pipeline picks the parameter file as per the environment. All the parameters defined in the parameters files get bound during deployment, but I'm having issues with the queue name.
This is how I am defining parameters in the parameters files:
"parameters": {
"logicAppName": {
"value": "Test-App-dev"
},
"QueueName": { "value": "testdev" }
}
This is how it is used in path variable in logic app json file:
But after deployment, the queue name is not reflecting on the Azure portal. This is how it looks like in the Azure portal:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我们的末端重现后,我们发现这是由于一个无效的模板。这是我们能够实现所需值的方式。
创建以下参数
现在您需要在模板的参数
中添加相同
中添加相同的内容,在定义的参数
中声明相同
结果中声明相同的结果:
最后,我们能够将其价值读成“ TestDev”。您可以从参数检查
queuenamedev
的值读为testdev。下面是我的逻辑应用程序的模板
After reproducing from our end, we found that this is due to an invalid template. Here is how we could able to pull off the required value.
Created the below parameter
Now you need to add the same in the template's parameter
Declare the same in your definition's parameter
RESULT:
Finally, we could able to read its value as 'testdev'. You can check from parameters that the value of
QueueNamedev
is read as testdev.Below is the template of my logic app