This is a sample repository that shows how to use GitHub Actions workflows to manage Azure infrastructure with Terraform.
- Create a new branch and check in the needed Terraform code modifications.
- Create a Pull Request (PR) in GitHub once you're ready to merge your changes into your environment.
- A GitHub Actions workflow will trigger to ensure your code is well formatted, internally consistent, and produces secure infrastructure. In addition, a Terraform plan will run to generate a preview of the changes that will happen in your Azure environment.
- Once appropriately reviewed, the PR can be merged into your main branch.
- Another GitHub Actions workflow will trigger from the main branch and execute the changes using Terraform.
- A regularly scheduled GitHub Action workflow should also run to look for any configuration drift in your environment and create a new issue if changes are detected.
-
This workflow runs on every commit and is composed of a set of unit tests on the infrastructure code. It runs terraform fmt to ensure the code is properly linted and follows terraform best practices. Next it performs terraform validate to check that the code is syntactically correct and internally consistent. Lastly, checkov, an open source static code analysis tool for IaC, will run to detect security and compliance issues. If the repository is utilizing GitHub Advanced Security (GHAS), the results will be uploaded to GitHub.
-
This workflow runs on every pull request and on each commit to the main branch. The plan stage of the workflow is used to understand the impact of the IaC changes on the Azure environment by running terraform plan. This report is then attached to the PR for easy review. The apply stage runs after the plan when the workflow is triggered by a push to the main branch. This stage will take the plan document and apply the changes after a manual review has signed off if there are any pending changes to the environment.
-
This workflow runs on a periodic basis to scan your environment for any configuration drift or changes made outside of terraform. If any drift is detected, a GitHub Issue is raised to alert the maintainers of the project.
To use these workflows in your environment several prerequisite steps are required:
-
Configure Terraform State Location
Terraform utilizes a state file to store information about the current state of your managed infrastructure and associated configuration. This file will need to be persisted between different runs of the workflow. The recommended approach is to store this file within an Azure Storage Account or other similar remote backend. Normally, this storage would be provisioned manually or via a separate workflow. The Terraform backend block will need updated with your selected storage location (see here for documentation).
-
Create GitHub Environment
The workflows utilizes GitHub Environments and Secrets to store the azure identity information and setup an approval process for deployments. Create an environment named
production
by following these instructions. On theproduction
environment setup a protection rule and add any required approvers you want that need to sign off on production deployments. You can also limit the environment to your main branch. Detailed instructions can be found here. -
Setup Azure Identity:
An Azure Active Directory application is required that has permissions to deploy within your Azure subscription. Create a separate application for a
read-only
andread/write
accounts and give them the appropriate permissions in your Azure subscription. In addition, both roles will also need at leastReader and Data Access
permissions to the storage account where the Terraform state from step 1 resides. Next, setup the federated credentials to allow GitHub to utilize the identity using OIDC. See the Azure documentation for detailed instructions.For the
read/write
identity create 1 federated credential as follows:- Set
Entity Type
toEnvironment
and use theproduction
environment name.
For the
read-only
identity create 2 federated credentials as follows:- Set
Entity Type
toPull Request
. - Set
Entity Type
toBranch
and use themain
branch name.
- Set
-
Add GitHub Secrets
Note: While none of the data about the Azure identities contain any secrets or credentials we still utilize GitHub Secrets as a convenient means to parameterize the identity information per environment.
Create the following secrets on the repository using the
read-only
identity:AZURE_CLIENT_ID
: The application (client) ID of the app registration in AzureAZURE_TENANT_ID
: The tenant ID of Azure Active Directory where the app registration is defined.AZURE_SUBSCRIPTION_ID
: The subscription ID where the app registration is defined.
Instructions to add the secrets to the repository can be found here.
Additionally create an additional secret on the
production
environment using theread-write
identity:AZURE_CLIENT_ID
: The application (client) ID of the app registration in Azure
Instructions to add the secrets to the environment can be found here. The environment secret will override the repository secret when doing the deploy step to the
production
environment when elevated read/write permissions are required.
A companion article detailing how to use GitHub Actions to deploy to Azure using IaC can be found at the DevOps Resource Center.