azure 无法通过Terraform/AZ CLI创建Bing服务

mwkjh3gx  于 2023-04-07  发布在  其他
关注(0)|答案(1)|浏览(164)

Bing.search.v7未通过Terraform或AZ CLI创建
我想通过Terraform或AZ CLI在门户网站中创建bing.search.v7。Terraform之前在认知服务下支持它,但现在它已经移出了它,目前Terraform不支持它。我也尝试使用AZ CLI,但没有用。有什么方法可以通过这两种方式创建上述资源吗?如果没有,可能的解决方案是什么?

bvuwiixz

bvuwiixz1#

我们尝试通过保留kind值并使用此示例terraform模板shared here来部署Bing Search V7,但失败了。
this documentation中所述,从2022年10月开始,Bing搜索API将从认知服务转移到Bing搜索服务。
您可以通过门户或通过ARM模板成功部署Bing Web Seach API V7

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {},
    "functions": [],
    "variables": {},
    "resources": [
        {
            "type":"Microsoft.Bing/accounts",
            "apiversion":"2020-06-10",
            "location":"Global",
            "name":"<BingSearchName>",
            "sku":{
                "name":"S1"
            },
            "Kind":"Bing.Search.v7",
            "properties":{
                "statisticsEnabled":false
            }

        }
    ],
    "outputs": {}
}

相关问题