THE DEV BENCH
💪 Bicep (Azure)medium

5. Fix the broken Bicep

This Bicep came from someone who writes JSON: it uses double quotes and comma-separated fields. Fix it so `var config` is an object with name = 'api' and retries = 3.

How to approach this

The two JSON habits that break Bicep: double quotes (Bicep only accepts SINGLE quotes) and commas between object fields (Bicep separates them with NEWLINES). Swap the quotes, drop the commas, put each field on its own line — that's valid Bicep.

main.bicep