- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要将 azurerm_virtual_machine_extension 资源添加到现有的 VM 资源中:
resource "azurerm_virtual_machine_extension" "vm-bootstrap" {
count = "1"
name = "bootstrap"
virtual_machine_id = ...
publisher = "Microsoft.Azure.Extensions"
type = "CustomScript"
type_handler_version = "2.1"
auto_upgrade_minor_version = "false"
settings = <<SETTINGS
{
"script": "${filebase64("bootstrap.sh")}"
}
SETTINGS
}
运行 terraform apply 返回并出现以下错误:
Error: compute.VirtualMachineExtensionsClient#CreateOrUpdate: Failure sending request:StatusCode=404 -- Original Error: Code="ArtifactVersionNotFound" Message="No version found inthe artifact repository that satisfies the requested version '2.1' for VM extension withpublisher 'Microsoft.Azure.Extensions' and type 'CustomScript'."
虽然看起来 VM 扩展存在:
az vm extension image list-versions -n CustomScript --publisher Microsoft.Azure.Extensions --lo
cation westeurope --query "[].name" -o tsv | sort -u
2.0.0
2.0.1
2.0.2
2.0.3
2.0.4
2.0.5
2.0.6
2.0.7
2.1.1
2.1.2
2.1.3
2.1.6
Terraform v1.0.11,
azure-cli:“2.30.0”,
azure-cli-core:“2.30.0”,
azure-cli-telemetry:“1.0.6”,
“扩展”:{}
您能指点一下吗?
最佳答案
该问题是由虚拟机扩展版本不匹配引起的,如果您尝试始终指定“最新”
而不是特定版本,则可以解决该问题。我的情况也是如此。
关于azurerm_virtual_machine_extension - ArtifactVersionNotFound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70228076/
我想要将 azurerm_virtual_machine_extension 资源添加到现有的 VM 资源中: resource "azurerm_virtual_machine_extension"
我想要将 azurerm_virtual_machine_extension 资源添加到现有的 VM 资源中: resource "azurerm_virtual_machine_extension"
我正在使用 azurerm_virtual_machine_extension 在 azure 中引导一些虚拟机。 我发现的所有示例都使用类似的内容: settings = Running tran
如何在安装了网络观察程序的情况下创建 azurerm_virtual_machine_extension。使用 Powershell 脚本。 resource "azurerm_virtual_mac
在 Azure 中启用 VM 诊断非常痛苦。我已经使用 ARM 模板、Azure PowerShell SDK 和 Azure CLI 使其正常工作。但几天来我一直在尝试使用 Terraform 和
我正在使用 terraform 创建 Azure VM 扩展资源 azurerm_virtual_machine_extension。但是,我陷入了以下用例,是否可以动态创建 settings blo
我正在尝试在我的 terraform 执行中使用以下内容: resource "azurerm_virtual_machine_extension" "vmex" { name = "myVM
如何在 terraform azurerm_virtual_machine_extension 中运行本地(不存储到 blob 存储帐户)PowerShell 脚本 文件夹有 main.tf 安装.p
我是一名优秀的程序员,十分优秀!