Deprecated and replaced by Deploy Azure Resource Manager (ARM) Template!
A GitHub Action to deploy ARM templates.
- Checkout To checks-out your repository so the workflow can access any specified ARM template.
-
creds
Required
Create Service Principal for Authentication -
templateLocation
Required
Specify the path to the Azure Resource Manager template.
(See assets/json/template.json) -
resourceGroupName
Provide the name of a resource group.
If you dont pass a resource group name the template will be deployed at subscription scope -
deploymentMode
Incremental (only add resources to resource group) or Complete (remove extra resources from resource group). Default:Incremental
. -
deploymentName
Specifies the name of the resource group deployment to create. -
parameters
Specify the path to the Azure Resource Manager parameters file or pass them as space delimited Key-Value Pairs.
(See examples/Advanced.md) -
overrideParameters
Specify the path to the Azure Resource Manager override parameters file or pass them as space delimited Key-Value Pairs.
(See examples/Advanced.md)
Every template output will be exported as output. For example the output is called containerName
then it will be available with ${{ steps.STEP.outputs.containerName }}
For more Information see examples/Advanced.md.
Additionally are the following outputs available:
deploymentName
Specifies the complete deployment name which has been generated
- uses: whiteducksoftware/[email protected]
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
resourceGroupName: <YourResourceGroup>
templateLocation: <path/to/azuredeploy.json>
deploymentName: <Deployment base name>
on: [push]
name: ARMActionSample
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: whiteducksoftware/[email protected]
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
resourceGroupName: <YourResourceGroup>
templateLocation: <path/to/azuredeploy.json>
parameters: <path/to/parameters.json> OR <KEY=VALUE>
deploymentName: <Deployment base name>
For more advanced workflows see examples/Advanced.md.