// Welcome to BicepBuilder
// Select resources from the left panel to build your template.

targetScope = 'resourceGroup'

@description('Location for all resources.')
param location string = resourceGroup().location

@description('Environment name (dev, staging, prod).')
@allowed(['dev', 'staging', 'prod'])
param environment string = 'dev'

@description('Project name prefix for resource naming.')
param projectName string = 'myapp'

// Add resources from the panel to see them appear here...