Bicep 错误代码 - BCP302
错误说明
The name <type-name> is not a valid type. Please specify one of the following types: <type-names>.
解决方案
使用正确的数据类型或用户定义的数据类型。
示例
以下示例会引发错误,因为 balla
类似于拼写错误:
type ball = {
name: string
color: string
}
output tennisBall balla = {
name: 'tennis'
color: 'yellow'
}
可以通过更正拼写错误来修复错误:
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。