简体   繁体   English

Azure 存储:通过 ARM 模板部署队列

[英]Azure Storage: Deploy Queue via ARM template

Is there a way to deploy Queues within a Storage Account via ARM templates?有没有办法通过 ARM 模板在存储帐户中部署队列? Haven't found an option so far.目前还没有找到一个选项。

If yes, how?如果是,如何? If not, is it planned to provide this capability?如果没有,是否计划提供这种能力? If not and not planned, which approach do you recommend for automated deployments?如果没有也没有计划,您建议使用哪种方法进行自动化部署?

Thanks谢谢

Is there a way to deploy Queues within a Storage Account via ARM templates?有没有办法通过 ARM 模板在存储帐户中部署队列?

No, it's not support now .不,现在不支持

ARM templates could deploy Azure Storage accounts, blob container, but not support to deploy queues, or tables within storage account . ARM 模板可以部署 Azure 存储帐户、blob 容器,但不支持在存储帐户中部署队列或表 Here is a link to a sample template to create a container: https://azure.microsoft.com/en-us/resources/templates/101-storage-blob-container/以下是用于创建容器的示例模板的链接: https://azure.microsoft.com/en-us/resources/templates/101-storage-blob-container/

You can vote up your voice to this feedback to promote the further achieved.您可以对此反馈投票,以促进进一步取得的成就。

A few ways you can think about data plane operations in deployment/apps您可以考虑部署/应用程序中的数据平面操作的几种方法

1) the code that consumes the queue can create on init if it doesn't exist 1)如果队列不存在,消费队列的代码可以在init上创建

2) if you're deploying via a pipeline, use a pipeline task to perform data plane operations 2)如果您通过管道进行部署,请使用管道任务来执行数据平面操作

3) in a template use the deploymentScript resource to create it - this is a bit heavyweight for the task you need, but it will work. 3) 在模板中使用deploymentScript资源来创建它 - 这对于您需要的任务来说有点重量级,但它会起作用。

That help?这种帮助?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用连接的资源通过 ARM 正确部署 Azure 逻辑应用程序? - How to properly deploy Azure Logic Apps via ARM with connected resources? git通过arm模板集成Azure数据工厂的部署方案 - Deployment scenario of git integrated Azure Data Factory via arm template 带有ARM存储的VSTS中的Azure部署 - Azure Deployment in VSTS with ARM Storage 在 azure 管道中的单个部署模板 yml 文件中使用 sshEnpoint 服务连接和 ARM 服务连接 - Using sshEnpoint Service connection and ARM Service connection in a single deploy template yml file in azure pipeline Deploy .NET Core app to Azure Web App with ARM template and GitHub Actions - Deploy .NET Core app to Azure Web App with ARM template and GitHub Actions Azure ARM模板部署是事务性的吗? - Is Azure ARM Template deployment transactional? Azure ARM模板osprofile依赖性 - Azure ARM Template osprofile dependency Azure ARM Scale Set-部署和更新解决方案 - Azure ARM Scale Set - deploy and update solution Azure 函数的 ARM 模板忽略 preWarmedInstanceCount 设置 - ARM template for Azure Function ignores preWarmedInstanceCount setting 未执行 Azure ARM 模板中的自定义脚本 - custom script in Azure ARM template not executed
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM