Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.54 KB

File metadata and controls

37 lines (28 loc) · 1.54 KB

title: Use extensions in Bicep description: This article describes how to use Bicep extensions. ms.topic: article ms.custom:

  • devx-track-bicep
  • build-2025 ms.date: 12/22/2025

Use Bicep extensions

Bicep was initially created to enhance the authoring experience compared to Azure Resource Manager JSON templates, simplifying the deployment and management of Azure resources. Bicep extensions build on this foundation, enabling Bicep files to reference resources beyond the scope of Azure Resource Manager. This article describes how to use Bicep extensions.

The syntax for importing Bicep extensions is:

extension <extension-name>

The syntax for importing Bicep extensions, which require configuration is:

extension <extension-name> with {
  <extension-properties>
}

For examples, see Bicep Kubernetes extension and Microsoft Graph extension.

Related content