gpt4 book ai didi

azure - 通过 Powershell Runbook 从 ARM 模板部署 Azure VM,无需下载模板

转载 作者:行者123 更新时间:2023-12-03 02:52:39 26 4
gpt4 key购买 nike

This本文介绍了如何在 powershell Runbook 中从 ARM 模板部署一些资源的教程。据我了解,它将下载特定路径中的模板和参数文件。但是,如果没有任何直接连接到自动化帐户的存储,那么如何在自动化 Runbook 中工作呢?显然,我误解了一些东西......

我的意思是 Get-AzureStorageFileContent 命令:

# Create a new context
$Context = New-AzureStorageContext -StorageAccountName $StorageAccountName -
StorageAccountKey $StorageAccountKey

Get-AzureStorageFileContent -ShareName 'resource-templates' -Context
$Context -path 'TemplateTest.json' -Destination 'C:\Temp'

$TemplateFile = Join-Path -Path 'C:\Temp' -ChildPath $StorageFileName

# Deploy the storage account
New-AzureRmResourceGroupDeployment -ResourceGroupName $ResourceGroupName -
TemplateFile $TemplateFile -TemplateParameterObject $Parameters

你知道如何理解这一点,或者有一些更好的方法来达到目标​​吗?

最佳答案

您可以使用 -TemplateParameterUri-TemplateUri 并提供存储模板的公开可用 URL。

关于azure - 通过 Powershell Runbook 从 ARM 模板部署 Azure VM,无需下载模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55104570/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com