💪 Bicep (Azure)medium
3. A Bicep object
Declare a variable `settings` holding an object with: • name — the string 'web' • port — the number 8080 • enabled — the boolean true Use Bicep object syntax (colons, one field per line).
How to approach this
A Bicep object looks almost like JSON but with two differences that trip everyone up: fields are separated by NEWLINES, not commas, and although it uses a colon (name: 'web') like JSON, the strings are SINGLE-quoted. So it's `{ name: 'web' <newline> port: 8080 }` — no commas, single quotes.
main.bicep