-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
208ed5d
commit cf876d8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Demo for Terragrunt | ||
on: | ||
- push | ||
- pull_request | ||
env: | ||
tf_version: 'latest' | ||
tg_version: 'latest' | ||
tf_working_dir: '_nonlive' | ||
jobs: | ||
build_demo_project: | ||
runs-on: ubuntu-latest | ||
name: Terragrunt Demo Project | ||
steps: | ||
- name: Install tfenv | ||
run: git clone https://github.com/tfutils/tfenv.git ~/.tfenv && sudo rm /usr/local/bin/terraform && sudo ln -s ~/.tfenv/bin/* /usr/local/bin | ||
- name: Install tgenv | ||
run: git clone https://github.com/cunymatthieu/tgenv.git ~/.tgenv && sudo ln -s ~/.tgenv/bin/* /usr/local/bin | ||
- name: 'Checkout' | ||
uses: actions/checkout@master | ||
- name: Install required Terraform & Terragrunt versions | ||
run: cd environments && tfenv install && tgenv install | ||
#### Terraforming | ||
- name: 'Terragrunt Apply _nonlive' | ||
run: cd _nonlive && terragrunt init && terragrunt apply --auto-approve --input=false | ||
- name: 'Terragrunt Apply _live' | ||
run: cd _nonlive && terragrunt init && terragrunt apply --auto-approve --input=false | ||
|