导出的 Azure 资源组模板具有空参数
Exported Azure Resource Group Template has null parameters
尝试从我之前导出的模板重新创建资源组,但出现此错误:
The value of deployment parameter 'Redis_polyrediscachegraphicsxp_name' is null. Please specify the value or use the parameter reference.
的确 parameters.json 文件有空值 :
"parameters": {
"Redis_polyrediscachegraphicsxp_name": {
"value": null
},
"storageAccounts_polystorgraphicsxp_name": {
"value": null
},
"databaseAccounts_polycosmosgraphicsxp_name": {
"value": null
}
}
如何解决这个问题?
错误已经表明你犯了错误。您的参数为空。所以你需要用这样正确的值来改变你的 parameters.json 文件:
"parameters": {
"Redis_polyrediscachegraphicsxp_name": {
"value": "xxxxxx"
},
"storageAccounts_polystorgraphicsxp_name": {
"value": "xxxxxx"
},
"databaseAccounts_polycosmosgraphicsxp_name": {
"value": "xxxxxx"
}
}
举个例子here.
尝试从我之前导出的模板重新创建资源组,但出现此错误:
The value of deployment parameter 'Redis_polyrediscachegraphicsxp_name' is null. Please specify the value or use the parameter reference.
的确 parameters.json 文件有空值 :
"parameters": {
"Redis_polyrediscachegraphicsxp_name": {
"value": null
},
"storageAccounts_polystorgraphicsxp_name": {
"value": null
},
"databaseAccounts_polycosmosgraphicsxp_name": {
"value": null
}
}
如何解决这个问题?
错误已经表明你犯了错误。您的参数为空。所以你需要用这样正确的值来改变你的 parameters.json 文件:
"parameters": {
"Redis_polyrediscachegraphicsxp_name": {
"value": "xxxxxx"
},
"storageAccounts_polystorgraphicsxp_name": {
"value": "xxxxxx"
},
"databaseAccounts_polycosmosgraphicsxp_name": {
"value": "xxxxxx"
}
}
举个例子here.