gpt4 book ai didi

azure - 无法使用 terraform 创建 Azure 认知服务

转载 作者:行者123 更新时间:2023-12-02 06:40:57 25 4
gpt4 key购买 nike

我正在尝试使用 terraform 创建 Azure 认知服务,但出现以下错误。尽管我们正在尝试创建“所有认知服务”类型的认知服务,但错误似乎与 QnA 相关。有什么建议吗?

resource "azurerm_cognitive_account" "azfn-rg" {
name = var.azurerm_cognitive_account_name
location = azurerm_resource_group.azfn-rg.location
resource_group_name = azurerm_resource_group.azfn-rg.name
kind = "CognitiveServices"

sku_name = "S0"

tags = var.tags

}

下面是错误:

cognitiveservices.AccountsClient#Create:响应请求失败:StatusCode=400 -- 原始错误:autorest/azure:服务返回错误。 Status=400 Code="ApiPropertiesInvalid"Message="给定的 'apiProperties' '{\r\n "qnaRuntimeEndpoint": ""\r\n}' 无效。验证错误:属性 'qnaRuntimeEndpoint' 尚未定义,并且架构不允许附加属性。路径“apiProperties.qnaRuntimeEndpoint”。”

最佳答案

我可以重现此错误。

要修复此问题,您可以像这样固定provider“azurerm”的版本。我正在使用 Terraform v0.12.28+provider.azurerm v2.0.0

provider "azurerm" {

version = "=2.0.0"
features {}

}

结果

enter image description here

关于azure - 无法使用 terraform 创建 Azure 认知服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62804573/

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