Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple Atlantis configuration to automate Terraform workflows for a project repository.
# atlantis/demo/repos.yaml
repos:
- id: github.com/example/terraform-project
workflow: default
apply_requirements: [approved]
allowed_overrides: [workflow]
workflows:
default:
plan:
steps:
- init
- plan
apply:
steps:
- applyAtlantis is an open-source tool that automates Terraform pull request workflows by running `terraform plan` and `terraform apply` commands in response to Git events, enabling safe and auditable infrastructure changes.
Origin & Creator
Created by runatlantis/Atlantis in 2017 to standardize GitOps-style Terraform workflows.
Industrial Note
Widely used in cloud-native environments, enterprise DevOps, and multi-cloud infrastructure automation where Terraform is the main IaC tool.