This repository offers a GitHub Action for automating the deployment and management of Azure resources using ARM Templates or Bicep files. It integrates smoothly into GitHub workflows, allowing developers to manage Azure infrastructure directly within their CI/CD pipelines.
With this action, users can:
- Deploy resources via Azure Deployments or manage environments using Deployment Stacks.
- Perform various operations like creating, validating, and previewing resource changes using the "What If" feature.
Key Configuration Options
- Execution Type (
type
): Specifies the mode of execution, whether deploying individual resources (deployment
) or managing full environment stacks (deploymentStack
). - Operations (
operation
): Users can create, validate, or preview changes before deploying resources. For deployment stacks, deletion and lifecycle management are also supported. - Scope (
scope
): Defines the scope at which resources are deployed, such as tenant, management group, subscription, or resource group. - Template & Parameters: Paths to the ARM or Bicep templates (
template-file
) and associated parameter files (parameters-file
), or the URI if they are hosted remotely (template-uri
). - What If Analysis: Leverage the what-if operation to preview potential changes before applying them, including options to exclude certain change types (
what-if-exclude-change-type
). - Unmanaged Resource Actions: Specify actions to take on unmanaged resources (
action-on-unmanage-resources
) or entire resource groups (action-on-unmanage-resourcegroups
), such as deleting or detaching them.
This action simplifies Azure resource management, providing flexibility through various configurations, making it suitable for automating both simple and complex infrastructure scenarios.
Deployment
- name: Deployment
uses: azure/bicep-deploy@v1
with:
type: deployment
operation: create
name: Development
location: westus2
scope: subscription
subscription-id: 00000000-0000-0000-0000-000000000000
template-file: ./main.bicep
parameters-file: ./main.bicepparam
Deployment Stack
- name: Deployment
uses: azure/bicep-deploy@v1
with:
type: deploymentStack
operation: create
name: Development
location: westus2
scope: subscription
subscription-id: 00000000-0000-0000-0000-000000000000
template-file: ./main.bicep
parameters-file: ./main.bicepparam
action-on-unmanage-resources: delete
action-on-unmanage-resourcegroups: delete
deny-settings-mode: denyWriteAndDelete
For end-to-end workflow examples, please see Deployment & Deployment Stacks.
- Login: This action is used to authenticate the GitHub Actions workflow with Azure Resource Manager (ARM).
- Checkout: This action checks out the repository where the workflow is running onto the GitHub Actions runner.
Name | Description | Allowed Values |
---|---|---|
type |
Specifies the execution type. | deployment , deploymentStack |
operation |
Specifies the operation to perform. | deployment: create , validate , whatIf deploymentStack: create , delete , validate |
name |
Specifies the name of the deployment or deploymentStack. | Free-text |
location |
Specifies the location of the deployment or deploymentStack. | Free-text |
scope |
Specifies the scope of the deployment or deploymentStack. | deployment: tenant , managementGroup , subscription , resourceGroup deploymentStack: managementGroup , subscription ,resourceGroup |
tenant-id |
Specifies the tenant ID. | Free-text |
management-group-id |
Specifies the management group ID. | Free-text |
subscription-id |
Specifies the subscription ID. | Free-text |
resource-group-name |
Specifies the resource group name. | Free-text |
template-file |
Specifies the path to the template file. | Free-text |
template-spec |
Specifies the template spec resource ID. | Free-text |
template-uri |
Specifies the HTTP URI of the template. | Free-text |
parameters-file |
Specifies the path to the parameters file. | Free-text |
parameters |
Specifies parameters in a JSON format. | Free-text |
what-if-exclude-change-types |
Specifies the change types to exclude from the "What If" operation. | Free-text |
action-on-unmanage-resources |
Specifies the action to take on unmanaged resources. | delete , detach |
action-on-unmanage-resourcegroups |
Specifies the action to take on unmanaged resource groups. | delete , detach |
action-on-unmanage-managementgroup |
Specifies the action to take on unmanaged management groups. | delete , detach |
deny-settings-mode |
Specifies the mode of the deny settings. | denyDelete , denyWriteAndDelete , none |
deny-settings-excluded-actions |
Specifies the excluded actions for the deny settings. | Free-text |
deny-settings-excluded-principals |
Specifies the excluded principals for the deny settings. | Free-text |
bypass-stack-out-of-sync-error |
Specifies whether to bypass the stack out of sync error. | true , false |
description |
Specifies the description of the deploymentStack. | Free-text |
tags |
Specifies the tags for the deploymentStack. | Free-text |
masked-outputs |
Specifies output names to mask values for. | Free-text |
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.