Git Product home page Git Product logo

infracost-azure-devops's Introduction

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 ๐Ÿ’ฐ

Example screenshot

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.

  1. 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.
  2. If you haven't done so already, download Infracost and run infracost auth login to get a free API key.
  3. Retrieve your Infracost API key by running infracost configure get api_key.
  4. If you are using an Azure Repos repositories follow the Azure Repos quick start. Currently this only supports Git repositories.
  5. If you are using a GitHub repository follow the GitHub Repos quick start

Azure Repos Quick start

  1. Create a new pipeline, selecting

    1. Azure Repos Git when prompted in the "Connect" stage
    2. Select the appropriate repo you wish to integrate Infracost with in the "Select" stage
    3. Choose "Starter Pipeline" in the "Configure" stage
    4. Replace the Starter Pipeline yaml with the following:
    # You can set up build triggers, as per the Quick Start guide to see comments on all pull
    # requests to a specific branch.
    # If you are seeing the build triggered twice you can try uncommenting the below line:
    # trigger: none
    
    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
      # If you're using Terraform Cloud/Enterprise and have variables stored on there
      # you can specify the following to automatically retrieve the variables:
      # - name: INFRACOST_TERRAFORM_CLOUD_TOKEN
      #   value: $(tfcToken)
      # - name: INFRACOST_TERRAFORM_CLOUD_HOST
      #   value: app.terraform.io # Change this if you're using Terraform Enterprise
    
    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@2
            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/}
              # Try adding the following to git clone if you're having issues cloning a private repo: --config http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)"
              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=/tmp/base/$(TF_ROOT) \
                                  --format=json \
                                  --out-file=/tmp/infracost-base.json
            displayName: Generate Infracost cost estimate baseline
    
          # 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
    
          # 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
    1. select "Save" from the "Save and run" dropdown and add the appropriate commit message
  2. 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.

    1. From your Azure DevOps organization, click on your project > Project Settings > Repositories
    2. Select the repository that your created the pipeline for in step 1
    3. Select the Policies tab and under the Branch Policies select on your default branch (master or main)
    4. Scroll to Build Validation and click + sign to add one if you don't have one already
    5. 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).
  3. Enable Azure Pipelines to post pull request comments

    1. From your Azure DevOps organization, click on your project > Project Settings > Repositories > your repository.
    2. 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.
  4. 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'.
  5. ๐ŸŽ‰ 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!

    Example pull request
  6. In Infracost Cloud, go to Org Settings and enable the dashboard, then trigger your CI/CD pipeline again. This causes the CLI to send its JSON output to your dashboard; the JSON does not contain any cloud credentials or secrets, see the FAQ for more information.

    This is our SaaS product that builds on top of Infracost open source. It enables team leads, managers and FinOps practitioners to setup tagging policies, guardrails and best practices to help guide the team. For example, you can check for required tag keys/values, or suggest switching AWS GP2 volumes to GP3 as they are more performant and cheaper.

    Infracost Cloud gives team leads, managers and FinOps practitioners visibility across all cost estimates in CI/CDCommunicate and enforce FinOps tags in pull requests

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

๐Ÿ‘‰๐Ÿ‘‰ We recommend using the free Infracost GitHub App instead as it has many benefits over Azure DevOps integration

  1. Create a new pipeline, selecting

    1. Github when prompted in the "Connect" stage
    2. Select the appropriate repo you wish to integrate Infracost with in the "Select" stage
    3. Choose "Starter Pipeline" in the "Configure" stage
    4. 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
        # If you're using Terraform Cloud/Enterprise and have variables stored on there
        # you can specify the following to automatically retrieve the variables:
        # env:
        # - name: INFRACOST_TERRAFORM_CLOUD_TOKEN
        #   value: $(tfcToken)
        # - name: INFRACOST_TERRAFORM_CLOUD_HOST
        #   value: app.terraform.io # Change this if you're using Terraform Enterprise
      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@2
              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=/tmp/base/$(TF_ROOT) \
                                    --format=json \
                                    --out-file=/tmp/infracost-base.json
              displayName: Generate Infracost cost estimate baseline
      
            # 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
      
          # 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
    5. select "Save" from the "Save and run" dropdown and add the appropriate commit message
  2. 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.

  3. 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'.
  4. ๐ŸŽ‰ 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!

    If there are issues, check the GitHub Actions logs and this page.

    Example pull request
  5. In Infracost Cloud, go to Org Settings and enable the dashboard, then trigger your CI/CD pipeline again. This causes the CLI to send its JSON output to your dashboard; the JSON does not contain any cloud credentials or secrets, see the FAQ for more information.

    This is our SaaS product that builds on top of Infracost open source. It enables team leads, managers and FinOps practitioners to setup tagging policies, guardrails and best practices to help guide the team. For example, you can check for required tag keys/values, or suggest switching AWS GP2 volumes to GP3 as they are more performant and cheaper.

    Infracost Cloud gives team leads, managers and FinOps practitioners visibility across all cost estimates in CI/CDCommunicate and enforce FinOps tags in pull requests

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:

Try the following steps:

  1. 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.
  2. If the above step does not fix the issue, change the "Post Infracost comment" task to the following format so instead of using $(System.AccessToken) directly, you pass it in via an environment variable:
    - script: |
        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
      env:
        SYSTEM_ACCESSTOKEN: $(System.AccessToken)
  3. If you're using the "Limit job authorization scope to current project for non-release pipelines" option in Azure Repos, see this article: this changes the Build Service Identity that will be performing the task. So rather than the usual Build Service for the project, you are now using a Build Service for the Organization.

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.

Task

We recommend you use the above quick start guide and examples, which uses the following task.

InfracostSetup

This task installs and configures the Infracost CLI.

steps:
  - task: InfracostSetup@v2
    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 auth login to get a free API key.
  • version: Optional, defaults to 0.10.x. SemVer ranges are supported, so instead of a full version string, you can use 0.10.x. This enables you to automatically get the latest backward compatible changes in the 0.10 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.

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

infracost-azure-devops's People

Contributors

hugorut avatar aliscott avatar alikhajeh1 avatar vdmgolub avatar tim775 avatar stopthatastronaut avatar swateek avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.