skills/smithery.ai/writing-bicep-templates

writing-bicep-templates

Installation
SKILL.md

Bicep Coding Standards

Goal: Create consistent, secure Azure infrastructure

Naming Convention

Use resourceToken from uniqueString():

var token = toLower(uniqueString(subscription().id, environmentName, location))
name: '${abbrs.appContainerApps}web-${token}'  // ca-web-abc123

Exception: ACR requires alphanumeric only: cr${resourceToken}

Parameters

Always add @description() and use @allowed() for constrained values:

Installs
1
First Seen
Apr 24, 2026
writing-bicep-templates from smithery.ai