feat: cloudflare iac #3
Workflow file for this run
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
name: 'Terragrunt' | |
on: | |
pull_request: | |
branches: ["main"] | |
push: | |
branches: ["main"] | |
env: | |
tofu_version: '1.7.1' | |
tg_version: '0.58.12' | |
working_dir: 'deployment/modules/cloudflare' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Check terragrunt HCL | |
uses: gruntwork-io/terragrunt-action@v2 | |
with: | |
tf_version: ${{ env.tf_version }} | |
tg_version: ${{ env.tg_version }} | |
tg_dir: ${{ env.working_dir }} | |
tg_command: 'hclfmt --terragrunt-check --terragrunt-diff' | |
- name: Check terraform fmt | |
uses: gruntwork-io/terragrunt-action@v2 | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }} | |
with: | |
tofu_version: ${{ env.tofu_version }} | |
tg_version: ${{ env.tg_version }} | |
tg_dir: ${{ env.working_dir }} | |
tg_command: 'run-all fmt -diff -check' | |
plan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Check terraform fmt | |
uses: gruntwork-io/terragrunt-action@v2 | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }} | |
with: | |
tofu_version: ${{ env.tofu_version }} | |
tg_version: ${{ env.tg_version }} | |
tg_dir: ${{ env.working_dir }} | |
tg_command: 'run-all plan' | |
tg_comment: true | |
deploy: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Check terraform fmt | |
uses: gruntwork-io/terragrunt-action@v2 | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
TF_STATE_POSTGRES_CONN_STR: ${{ secrets.TF_STATE_POSTGRES_CONN_STR }} | |
with: | |
tofu_version: ${{ env.tofu_version }} | |
tg_version: ${{ env.tg_version }} | |
tg_dir: ${{ env.working_dir }} | |
tg_command: 'run-all apply' | |