Rediger

Del via


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 templates to reference resources beyond the scope of Azure Resource Manager. This article describes how to use Bicep extensions.

Note

The experimental feature extensibility must be enabled from the Bicep config file to use this feature.

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.