Bicep 错误代码 - BCP055
引用类型不存在的属性时,会发生此错误。
错误说明
Cannot access properties of type <type-name>. A <type-name> type is required.
示例
以下示例会引发错误,因为未定义 string.bar:
type foo = string.bar
可以通过删除引用来修复错误:
type foo = string
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。