Infracost Azure Pipelines integration
This project provides Azure Pipeline tasks for Infracost along with examples of how you can use it to see cloud cost estimates for Terraform in pull requests 💰
Follow our migration guide if you used our old version of this repo.
Table of contents
Quick start
The Azure Pipelines Infracost tasks can be used with either Azure Repos (only git is supported) or GitHub repos. The following steps assume a simple Terraform directory is being used, we recommend you use a more relevant example if required.
- In the Azure DevOps Marketplace, Add the Infracost tasks to your organization by clicking 'Get it free', selecting your organization and clicking Install. If you do not have permission to install the task, you can submit a request to your organization's admin who will get emailed the details of the request.
- Retrieve your Infracost API key by running
infracost configure get api_key
. We recommend using your same API key in all environments. If you don't have one, download Infracost and run infracost register
to get a free API key.
- If you are using an Azure Repos repositories follow the Azure Repos quick start. Currently this only supports Git repositories.
- If you are using a GitHub repository follow the GitHub Repos quick start
Azure Repos Quick start
Create a new pipeline, selecting
- Azure Repos Git when prompted in the "Connect" stage
- Select the appropriate repo you wish to integrate Infracost with in the "Select" stage
- Choose "Starter Pipeline" in the "Configure" stage
- Replace the Starter Pipeline yaml with the following:
# The Azure Pipelines docs (https://docs.microsoft.com/en-us/azure/devops/pipelines/process/tasks) describe other options.
# Running on pull requests to `master` (or your default branch) is a good default.
pr:
- master
variables:
- name: TF_ROOT
value: PATH/TO/TERRAFORM/CODE # Update this!
# If you use private modules you'll need this env variable to use
# the same ssh-agent socket value across all steps.
- name: SSH_AUTH_SOCK
value: /tmp/ssh_agent.sock
jobs:
- job: infracost
displayName: Run Infracost
pool:
vmImage: ubuntu-latest
steps:
# If you use private modules, add a base 64 encoded secret
# called gitSshKeyBase64 with your private key, so Infracost can access
# private repositories (similar to how Terraform/Terragrunt does).
# - bash: |
# ssh-agent -a $(SSH_AUTH_SOCK)
# mkdir -p ~/.ssh
# echo "$(echo $GIT_SSH_KEY_BASE_64 | base64 -d)" | tr -d '\r' | ssh-add -
# # Update this to github.com, gitlab.com, bitbucket.org, ssh.dev.azure.com or your source control server's domain
# ssh-keyscan ssh.dev.azure.com >> ~/.ssh/known_hosts
# displayName: Add GIT_SSH_KEY
# env:
# GIT_SSH_KEY_BASE_64: $(gitSshKeyBase64)
# Install the Infracost CLI, see https://github.com/infracost/infracost-azure-devops#infracostsetup
# for other inputs such as version, and pricingApiEndpoint (for self-hosted users).
- task: InfracostSetup@1
displayName: Setup Infracost
inputs:
apiKey: $(infracostApiKey)
# Clone the base branch of the pull request (e.g. main/master) into a temp directory.
- bash: |
branch=$(System.PullRequest.TargetBranch)
branch=${branch#refs/heads/}
git clone $(Build.Repository.Uri) --branch=${branch} --single-branch /tmp/base
displayName: Checkout base branch
# Generate an Infracost cost estimate baseline from the comparison branch, so that Infracost can compare the cost difference.
- bash: |
infracost breakdown --path=$(TF_ROOT) \
--format=json \
--out-file=/tmp/infracost-base.json
displayName: Generate Infracost cost estimate baseline
# If you're using Terraform Cloud/Enterprise and have variables stored on there
# you can specify the following to automatically retrieve the variables:
# env:
# INFRACOST_TERRAFORM_CLOUD_TOKEN: $(tfcToken)
# INFRACOST_TERRAFORM_CLOUD_HOST: app.terraform.io # Change this if you're using Terraform Enterprise
# Generate an Infracost diff and save it to a JSON file.
- bash: |
infracost diff --path=$(TF_ROOT) \
--format=json \
--compare-to=/tmp/infracost-base.json \
--out-file=/tmp/infracost.json
displayName: Generate Infracost diff
# If you're using Terraform Cloud/Enterprise and have variables stored on there
# you can specify the following to automatically retrieve the variables:
# env:
# INFRACOST_TERRAFORM_CLOUD_TOKEN: $(tfcToken)
# INFRACOST_TERRAFORM_CLOUD_HOST: app.terraform.io # Change this if you're using Terraform Enterprise
# Posts a comment to the PR using the 'update' behavior.
# This creates a single comment and updates it. The "quietest" option.
# The other valid behaviors are:
# delete-and-new - Delete previous comments and create a new one.
# new - Create a new cost estimate comment on every push.
# See https://www.infracost.io/docs/features/cli_commands/#comment-on-pull-requests for other options.
- bash: |
infracost comment azure-repos --path=/tmp/infracost.json \
--azure-access-token=$(System.AccessToken) \
--pull-request=$(System.PullRequest.PullRequestId) \
--repo-url=$(Build.Repository.Uri) \
--behavior=update
displayName: Post Infracost comment
- select "Save" from the "Save and run" dropdown and add the appropriate commit message
Enable pull request build triggers. Without this, Azure Pipelines do not trigger builds with the pull request ID, thus comments cannot be posted by the integration.
- From your Azure DevOps organization, click on your project > Project Settings > Repositories

- Select the repository that your created the pipeline for in step 1

- Select the Policies tab and under the Branch Policies select on your default branch (master or main)

- Scroll to Build Validation and click + sign to add one if you don't have one already

- Set your 'Build pipeline' to the pipeline you created in step 1, leave 'Path filter' blank, set 'Trigger' to Automatic, and 'Policy requirement' to Optional (you can also use Required but we don't recommend it).

Enable Azure Pipelines to post pull request comments
- From your Azure DevOps organization, click on your project > Project Settings > Repositories > your repository.

- Click on the Securities tab, scroll down to Users and click on the '[project name] Build Service ([org name])' user, and set the 'Contribute to pull requests' to Allow.

Add secret variables: from your Azure DevOps organization, click on your project > Pipelines > your pipeline > Edit > Variables, and click the + sign to add variables for the following. Also tick the 'Keep this value secret' option.
infracostApiKey
: with your Infracost API key as the value, and select 'Keep this value secret'.
🎉 That's it! Send a new pull request to change something in Terraform that costs money. You should see a pull request comment that gets updated, e.g. the 📉 and 📈 emojis will update as changes are pushed!
Follow the docs if you'd also like to show cost for of usage-based resources such as AWS Lambda or S3. The usage for these resources are fetched from CloudWatch/cloud APIs and used to calculate an estimate.
If there are issues, you can enable the 'Enable system diagnostics' check box when running the pipeline manually or for more options see this page.
GitHub Repos Quick Start
Create a new pipeline, selecting
- Github when prompted in the "Connect" stage
- Select the appropriate repo you wish to integrate Infracost with in the "Select" stage
- Choose "Starter Pipeline" in the "Configure" stage
- Replace the Starter Pipeline yaml with the following:
# The Azure Pipelines docs (https://docs.microsoft.com/en-us/azure/devops/pipelines/process/tasks) describe other options.
# Running on pull requests to `master` (or your default branch) is a good default.
pr:
- master
variables:
- name: TF_ROOT
value: PATH/TO/TERRAFORM/CODE # Update this!
# If you use private modules you'll need this env variable to use
# the same ssh-agent socket value across all steps.
- name: SSH_AUTH_SOCK
value: /tmp/ssh_agent.sock
jobs:
- job: infracost
displayName: Run Infracost
pool:
vmImage: ubuntu-latest
steps:
# If you use private modules, add a base 64 encoded secret
# called gitSshKeyBase64 with your private key, so Infracost can access
# private repositories (similar to how Terraform/Terragrunt does).
# - bash: |
# ssh-agent -a $(SSH_AUTH_SOCK)
# mkdir -p ~/.ssh
# echo "$(echo $GIT_SSH_KEY_BASE_64 | base64 -d)" | tr -d '\r' | ssh-add -
# # Update this to github.com, gitlab.com, bitbucket.org, ssh.dev.azure.com or your source control server's domain
# ssh-keyscan github.com >> ~/.ssh/known_hosts
# displayName: Add GIT_SSH_KEY
# env:
# GIT_SSH_KEY_BASE_64: $(gitSshKeyBase64)
# Install the Infracost CLI, see https://github.com/infracost/infracost-azure-devops#infracostsetup
# for other inputs such as version, and pricingApiEndpoint (for self-hosted users).
- task: InfracostSetup@1
displayName: Setup Infracost
inputs:
apiKey: $(infracostApiKey)
# Clone the base branch of the pull request (e.g. main/master) into a temp directory.
- bash: |
branch=$(System.PullRequest.TargetBranch)
branch=${branch#refs/heads/}
git clone $(Build.Repository.Uri) --branch=${branch} --single-branch /tmp/base
displayName: Checkout base branch
# Generate an Infracost cost estimate baseline from the comparison branch, so that Infracost can compare the cost difference.
- bash: |
infracost breakdown --path=$(TF_ROOT) \
--format=json \
--out-file=/tmp/infracost-base.json
displayName: Generate Infracost cost estimate baseline
# If you're using Terraform Cloud/Enterprise and have variables stored on there
# you can specify the following to automatically retrieve the variables:
# env:
# INFRACOST_TERRAFORM_CLOUD_TOKEN: $(tfcToken)
# INFRACOST_TERRAFORM_CLOUD_HOST: app.terraform.io # Change this if you're using Terraform Enterprise
# Generate an Infracost diff and save it to a JSON file.
- bash: |
infracost diff --path=$(TF_ROOT) \
--format=json \
--compare-to=/tmp/infracost-base.json \
--out-file=/tmp/infracost.json
displayName: Generate Infracost diff
# If you're using Terraform Cloud/Enterprise and have variables stored on there
# you can specify the following to automatically retrieve the variables:
# env:
# INFRACOST_TERRAFORM_CLOUD_TOKEN: $(tfcToken)
# INFRACOST_TERRAFORM_CLOUD_HOST: app.terraform.io # Change this if you're using Terraform Enterprise
# Posts a comment to the PR using the 'update' behavior.
# This creates a single comment and updates it. The "quietest" option.
# The other valid behaviors are:
# delete-and-new - Delete previous comments and create a new one.
# hide-and-new - Minimize previous comments and create a new one.
# new - Create a new cost estimate comment on every push.
# See https://www.infracost.io/docs/features/cli_commands/#comment-on-pull-requests for other options.
- bash: |
infracost comment github --path=/tmp/infracost.json \
--github-token=$(githubToken) \
--pull-request=$(System.PullRequest.PullRequestNumber) \
--repo=$(Build.Repository.Name) \
--behavior=update
displayName: Post Infracost comment
- select "Save" from the "Save and run" dropdown and add the appropriate commit message
Create a GitHub token (such as Personal Access Token) that can be used by the pipeline to post comments. The token needs to have repo
scope so it can post comments. If you are using SAML single sign-on, you must first authorize the token.
Add secret variables to the pipeline you created in step 1. From your Azure DevOps organization, click on your project > Pipelines > your pipeline > Edit > Variables, and click the + sign to add variables for the following:
infracostApiKey
: with your Infracost API key as the value, and select 'Keep this value secret'.
githubToken
with your GitHub access token as the value, and select 'Keep this value secret'.
🎉 That's it! Send a new pull request to change something in Terraform that costs money. You should see a pull request comment that gets updated, e.g. the 📉 and 📈 emojis will update as changes are pushed!
Follow the docs if you'd also like to show cost for of usage-based resources such as AWS Lambda or S3. The usage for these resources are fetched from CloudWatch/cloud APIs and used to calculate an estimate.
If there are issues, you can enable the 'Enable system diagnostics' check box when running the pipeline manually or for more options see this page.
Troubleshooting
403 error when posting to Azure Repo
If you receive a 403 error when running the infracost comment
command in your pipeline:
This is normally because the build agent does not have permissions to post to the Azure Repo. Make sure step 3 (Enable Azure Pipelines to post pull request comments) of the Azure Repos Quick start is complete.
Examples
The examples directory demonstrates how these actions can be used for different projects. They all work by using the default Infracost CLI option that parses HCL, thus a Terraform Plan JSON is not needed.
For advanced use cases where the estimate needs to be generated from Terraform plan JSON files, see the plan JSON examples here.
Cost policies
Infracost policies enable centralized teams, who are often helping others with cloud costs, to provide advice before resources are launched, setup guardrails, and prevent human error. Follow our docs to use Infracost's native support for Open Policy Agent (OPA) policies. This enables you to see passing/failing policies in Infracost pull request comments (shown below) without having to install anything else.

If you use HashiCorp Sentinel, follow our example to output the policy pass/fail results into CI/CD logs.
Tasks
We recommend you use the above quick start guide and examples, which combine the following individual actions.
InfracostSetup
This task installs and configures the Infracost CLI.
steps:
- task: InfracostSetup@v0
inputs:
apiKey: $(infracostApiKey)
It accepts the following inputs:
apiKey
: Required. Your Infracost API key. It can be retrieved by running infracost configure get api_key
. We recommend using your same API key in all environments. If you don't have one, download Infracost and run infracost register
to get a free API key.
version
: Optional, defaults to 0.9.x
. SemVer ranges are supported, so instead of a full version string, you can use 0.9.x
. This enables you to automatically get the latest backward compatible changes in the 0.9 release (e.g. new resources or bug fixes).
currency
: Optional. Convert output from USD to your preferred ISO 4217 currency, e.g. EUR, BRL or INR.
pricingApiEndpoint
: Optional. For self-hosted users, endpoint of the Cloud Pricing API, e.g. https://cloud-pricing-api.
enableDashboard
: Optional, defaults to false
. Enables Infracost dashboard features, not supported for self-hosted Cloud Pricing API.
Contributing
Issues and pull requests are welcome! For development details, see the contributing guide. For major changes, including interface changes, please open an issue first to discuss what you would like to change. Join our community Slack channel, we are a friendly bunch and happy to help you get started :)
License
Apache License 2.0