This folder contains Azure Bicep templates for infrastructure deployment.
infra/bicep/
├── {project-name}/
│ ├── main.bicep # Main deployment template
│ ├── main.bicepparam # Parameter file
│ ├── modules/ # Reusable modules
│ │ ├── network.bicep
│ │ ├── storage.bicep
│ │ └── ...
│ └── deploy.ps1 # Deployment script
Use the agent workflow:
azure-principal-architect- Architecture assessmentbicep-plan- Create implementation planbicep-implement- Generate Bicep code
# Navigate to project folder
cd infra/bicep/{project-name}
# Deploy with what-if
./deploy.ps1 -WhatIf
# Deploy
./deploy.ps1# Build (syntax check)
bicep build main.bicep
# Lint (best practices)
bicep lint main.bicep
# Format
bicep format main.bicep