Serialization
The Azure lexicon serializes resources into ARM template JSON.
Building
Section titled “Building”Run chant build to produce an ARM template from your declarations:
chant build# Writes dist/template.jsonThe generated template includes:
$schemapointing to the ARM deployment template schemacontentVersion: "1.0.0.0"parameterssection for input parametersresourcesarray with typed Azure resourcesoutputssection for stack outputs
Deploying
Section titled “Deploying”Use the Azure CLI to deploy the generated template:
az deployment group create \ --resource-group my-rg \ --template-file dist/template.json