Bicep 错误代码 - BCP294
错误说明
Type unions must be reducible to a single ARM type (such as 'string', 'int', or 'bool').
示例
以下示例会引发错误,因为联合类型中使用了不同的类型:
type foo = 'a' | 1
可以通过对联合类型定义使用单种数据类型来修复错误:
type foo = 'a' | 'b'
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。