THE DEV BENCH
💪 Bicep (Azure)easy

2. Variables and types

Declare three variables with the right types: • prefix — the string 'app' • maxCount — the number 5 • enabled — the boolean true (A variable is `var NAME = value`.)

How to approach this

A `var` holds a computed or fixed value: `var NAME = value`. Types work like JSON — single-quoted strings, bare numbers, bare true/false. No type keyword on a var (Bicep infers it), unlike a param. One statement per line.

main.bicep