Step 1
Install Terrateam
Click here to install Terrateam from the GitHub Marketplace
Install the Terrateam GitHub application on any repository with Terraform code.
Step 1
Install the Terrateam GitHub application on any repository with Terraform code.
Step 2
The Terrateam GitHub workflow file must be stored in the default branch
of your Terraform repository. The default branch
is usually named main
or master
.
.github/workflows/terrateam.yml
git checkout -b terrateam-setup
.github/workflows
directorymkdir -p .github/workflows
.github/workflows
directorycurl -L -o .github/workflows/terrateam.yml \
https://terrateam.io/.github/workflows/terrateam.yml
.github/workflows/
to your branchgit add .github/workflows/ && \
git commit .github/workflows/ -m "Terrateam GitHub Actions workflow file" && \
git push --set-upstream origin terrateam-setup
gh pr create --fill
Step 3
Terrateam will automatically run terraform plan
and comment back the output
Comment on the pull request with terrateam apply
to apply changes
Merge the pull request
Learn how to fully customize your workflow with our runtime configuration file.
Join our Slack community or email support if you need help on-boarding.