RDhar / terraform-with-comments

Archived: Reusable workflow to interface Terraform CLI with PR comments via GitHub Actions CI/CD.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Warning

This project has been archived and succeeded by devsectop/tf-via-pr.

Terraform with Comments — Reusable Workflow

Overview · Usage [Workflow · Terraform · Examples] · Security · Roadmap · Contributions · License

TL;DR
This reusable workflow enables you to plan and apply changes to Terraform configurations with pull request (PR) comments: for a CLI-like experience on the web. It's powered by GitHub Actions to maximize compatibility and minimize maintenance for DIY deployments.

Overview

  • Terraform is a platform-agnostic tool for managing cloud and on-prem resources by provisioning infrastructure as code (IaC).
    • It enables you to define resources in human-readable configuration files that can be version controlled and shared for consistent state management.
  • GitHub Actions is a continuous integration and continuous deployment (CI/CD) platform that enables you to automate your project's pipelines with custom workflows.
    • This repository hosts a reusable workflow that parses PR comments and runs Terraform commands in a remote environment.
    • Also supports GitHub Codespaces dev container, which offers a tailored Terraform development environment, complete with tools and runtimes to lower the barrier to entry for contributors.
  • Best suited for DevOps and Platform engineers who want to empower their teams to self-service Terraform without the overhead of self-hosting runners, containers or VMs like Atlantis.
    • Environment deployment protection rules mitigate the risk of erroneous changes along with standardized approval requirements.
    • Each PR and associated workflow run holds a complete log of infrastructure changes for ease of collaborative debugging as well as audit compliance.

Usage

Workflow

Copy the following snippet into ".github/workflows/terraform.yml" file in your repository. Replace the contents of env_vars with environment variables required by your Terraform configuration (e.g., AWS credentials or TF_VAR variables).

on:
  issue_comment:
    types: [created, edited]

jobs:
  terraform:
    uses: rdhar/terraform-with-comments/.github/workflows/terraform.yml@main
    secrets:
      env_vars: |
        AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }}
        AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }}
  • The @main suffix can be replaced with a specific release tag/SHA to pin your workflow to that version: hardening your CI/CD pipeline security against supply chain attacks.
  • The optional env_vars input lets you pass in environment variables as key-value pairs while masking sensitive values from logs.
    • Each entry must be on a new line and separated by an equals sign (=).

Terraform

To run terraform plan in "stacks/sample_instance" directory, trigger the workflow by creating a PR comment in the following format. The workflow will add a PR comment with the planned output for review.

-terraform=plan -chdir=stacks/sample_instance

To terraform apply these changes, edit/create a PR comment in the following format.

-terraform=apply -chdir=stacks/sample_instance

The following arguments are supported simultaneously, in any order:

  • auto-approve: Flag to skip confirmation before applying the plan (e.g., -auto-approve).
  • backend-config: Path to backend configuration file(s) (e.g., -backend-config=stacks/backend.tfvars).
  • chdir: Path to a directory containing Terraform configuration files (e.g., -chdir=stacks/sample_instance).
  • destroy: Flag to destroy resources managed by Terraform (e.g., -destroy).
  • parallelism: Number of concurrent operations to run (e.g., -parallelism=10).
  • replace: List of resource addresses to replace (e.g., -replace=aws_instance.this,aws_instance.that).
  • target: List of resource addresses to target (e.g., -target=aws_instance.this,aws_instance.that).
  • var-file: Path to variable file(s) (e.g., -var-file=stacks/prod.tfvars).
  • workspace: Name of Terraform workspace to select (e.g., -workspace=prod).

Examples

workflow.mp4
  • View PR: Plan, apply and destroy multiple different Terraform configurations in bulk.

    # Plan multiple configurations
    -terraform=plan -chdir=stacks/sample_bucket -var-file=prod.tfvars
    -terraform=plan -chdir=stacks/sample_instance
    
    # Apply multiple configurations
    -terraform=apply -chdir=stacks/sample_bucket -var-file=prod.tfvars
    -terraform=apply -chdir=stacks/sample_instance
    
    # Plan destruction of multiple configurations
    -terraform=plan -destroy -chdir=stacks/sample_bucket -var-file=prod.tfvars
    -terraform=plan -destroy -chdir=stacks/sample_instance
    
    # Destroy multiple configurations
    -terraform=apply -destroy -chdir=stacks/sample_bucket -var-file=prod.tfvars
    -terraform=apply -destroy -chdir=stacks/sample_instance
  • View PR: Plan and apply changes to a targeted resource, then destroy it without confirmation.

    # Plan changes to a targeted resource
    -terraform=plan -chdir=stacks/sample_instance -target=aws_instance.sample
    
    # Apply changes to a targeted resource
    -terraform=apply -chdir=stacks/sample_instance -target=aws_instance.sample
    
    # Destroy targeted resource without confirmation
    -terraform=apply -destroy -chdir=stacks/sample_instance -target=aws_instance.sample -auto-approve

Security

Integrating security in your CI/CD pipeline is critical to practicing DevSecOps. This reusable workflow is designed to be secure by default, and it should be complemented with your own review to ensure it meets your (organization's) security requirements.

  • All associated GitHub Actions used in this workflow are pinned to a specific SHA to prevent supply chain attacks from third-party upstream dependencies.
  • Restrict changes to certain environments with deployment protection rules so that approval is required from authorized users/teams before changes to the infrastructure can be applied.

Roadmap

  • Pass environment variables to the workflow as secrets to prevent sensitive values from being exposed in logs.
    • The secrets.env_vars input allows any number of key-value pairs to be passed to the workflow for use as masked environment variables, enabling you to customize the workflow to your Terraform configuration.
    • GitHub Actions has no support for passing secrets from a prior job in the caller workflow to a reusable workflow. Tracked in discussion#13082, discussion#17554 and discussion#26671.
    • If you need to pass dynamic secrets such as OIDC tokens, feel free to clone and adapt the job/steps of the reusable workflow as required. Modifications are permitted by this project's permissive license.
  • Parse PR comments as input commands to interface with Terraform CLI, returning the output as bot comments.
  • Use GitHub's reusable workflow or composite actions for CI/CD of Terraform configuration changes.
    • Opted for reusable workflow due to more granular control over workflow execution: from managing concurrency of queued workflows to running jobs in parallel with strategy.matrix.
    • Adapted ternary operator-like behavior to enable if-else logic within GitHub Actions expressions. Tracked in discussion#26738 and PR#24357.
    • Unlike pull_request, issue_comment events can only be triggered to run on the default branch, which complicates testing changes to the reusable workflow.

Contributions

All forms of contribution are very welcome and deeply appreciated for fostering open-source software.

License

  • This project is licensed under the permissive Apache License 2.0.
  • All works herein are my own and shared of my own volition.
  • Copyright 2023 Rishav Dhar — All wrongs reserved.

About

Archived: Reusable workflow to interface Terraform CLI with PR comments via GitHub Actions CI/CD.

License:Apache License 2.0


Languages

Language:HCL 100.0%