THE DEV BENCH
💪 Bicep (Azure)easy

1. Your first Bicep param

Declare a Bicep parameter: param location string = 'eastus' Write exactly that — a parameter named location, of type string, defaulting to 'eastus'.

How to approach this

Bicep is Azure's infrastructure-as-code language. A parameter is `param NAME TYPE = default`. The type (string, int, bool, array, object) is a bare keyword. Crucially, Bicep strings use SINGLE quotes ('eastus') — double quotes are a syntax error. No JSON braces, no colons at this level.

main.bicep