gpt4 book ai didi

azure - 使用模板在现有资源组中创建 Azure 容器注册表

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

我尝试使用模板创建 Azure 容器注册表。我想在资源组互联网套件中创建容器注册表。

我尝试这样:

{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"functions": [],
"variables": {},
"resources": [
{
"name": "containerRegistry1",
"type": "Microsoft.ContainerRegistry/registries",
"apiVersion": "2019-05-01",
"location": "West Europe",
"sku": {
"name": "Basic"
},
"properties": {
"adminUserEnabled": true
}
},

{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2021-04-01",
"name": "nestedDeployment",
"resourceGroup": "internet-suite",
"properties": {
"mode": "Incremental",
"template": {
resource-group-resources
}
}
}

],
"outputs": {}
}

但我收到此错误:

Member name should be a string in double quotes.arm-template (syntax)

最佳答案

我们尝试通过一些修改使用给定模板创建容器注册表,并且它有效

这是解决方法

resource-group-resources 中遇到类似的问题,需要在双引号之间添加,正如 @Thomas 所建议的那样。要解决我们尝试使用 New-AzResourceGroupDeployment 部署到我们现有的资源组通过修改你的代码,它就可以工作了。

错误详细信息:-

enter image description here

修改后的模板:-some.json 文件

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {},
    "functions": [],
    "variables": {},
    "resources": [
        {
            "name": "myacr",
            "type": "Microsoft.ContainerRegistry/registries",
            "apiVersion": "2019-05-01",
            "location": "West Europe",            
            "sku": {
                "name": "Basic"
            },
            "properties": {
                "adminUserEnabled": true
            }
        }

    ],
    "outputs": {}
}

输出详细信息:- enter image description here enter image description here

有关详细信息,请参阅此 微软文档| Microsoft.ContainerRegistry registries

关于azure - 使用模板在现有资源组中创建 Azure 容器注册表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72940409/

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