Dela via


Bicep-felkod – BCP294

Det här felet uppstår när du använder värden för olika datatyper i en union typ definition.

Felbeskrivning

Type unions must be reducible to a single ARM type (such as 'string', 'int', or 'bool').

Exempel

I följande exempel uppstår felet eftersom det finns olika typer som används i unionstypen:

type foo = 'a' | 1

Du kan åtgärda felet med hjälp av en enda datatyp för definitionen av unionstyp:

type foo = 'a' | 'b'

Nästa steg

Mer information om Bicep-fel och varningskoder finns i Bicep Core Diagnostics.