fix: use random_bytes for outline secret key (#267) #319
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" ] | |
paths: | |
- "deployment/**" | |
- ".github/workflows/terragrunt.yaml" | |
push: | |
branches: [ "main" ] | |
paths: | |
- "deployment/**" | |
- ".github/workflows/terragrunt.yaml" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
env: | |
tofu_version: '1.7.1' | |
tg_version: '0.58.12' | |
working_dir: 'deployment' | |
TERRAGRUNT_PARALLELISM: 1 | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Check Formatting | |
uses: gruntwork-io/terragrunt-action@v2 | |
with: | |
tofu_version: ${{ env.tofu_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 | |
if: github.ref != 'refs/heads/main' | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Install 1Password CLI | |
uses: 1password/install-cli-action@v1 | |
- name: Install Terragrunt | |
uses: eLco/setup-terragrunt@v1 | |
with: | |
terragrunt_version: ${{ env.tg_version }} | |
- name: 'Install OpenTofu' | |
uses: opentofu/setup-opentofu@v1 | |
with: | |
tofu_version: ${{ env.tofu_version }} | |
tofu_wrapper: false | |
- name: Plan All | |
working-directory: ${{ env.working_dir }} | |
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 }} | |
GITHUB_APP_INSTALLATION_ID: ${{ secrets.TF_APP_INSTALLATION_ID }} | |
GITHUB_APP_ID: ${{ secrets.TF_APP_ID }} | |
GITHUB_APP_PEM_FILE: ${{ secrets.TF_APP_PEM_FILE }} | |
GITHUB_OWNER: ${{ secrets.TF_APP_GITHUB_OWNER }} | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: terragrunt run-all plan -no-color 2>&1 | tee "${{github.workspace}}/plan_output.txt" && exit ${PIPESTATUS[0]}; | |
# - name: 'List files' | |
# run: 'ls -la ${{ github.workspace }}' | |
# - name: Comment Terraform Plan on PR | |
# uses: blinqas/tf-plan-pr-comment@v1 | |
# with: | |
# output_file: "${{ github.workspace }}/plan_output.txt" | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
deploy: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@main | |
- name: Install 1Password CLI | |
uses: 1password/install-cli-action@v1 | |
- name: Install Terragrunt | |
uses: eLco/setup-terragrunt@v1 | |
with: | |
terragrunt_version: ${{ env.tg_version }} | |
- name: 'Install OpenTofu' | |
uses: opentofu/setup-opentofu@v1 | |
with: | |
tofu_version: ${{ env.tofu_version }} | |
tofu_wrapper: false | |
- name: Deploy All | |
working-directory: ${{ env.working_dir }} | |
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 }} | |
GITHUB_APP_INSTALLATION_ID: ${{ secrets.TF_APP_INSTALLATION_ID }} | |
GITHUB_APP_ID: ${{ secrets.TF_APP_ID }} | |
GITHUB_APP_PEM_FILE: ${{ secrets.TF_APP_PEM_FILE }} | |
GITHUB_OWNER: ${{ secrets.TF_APP_GITHUB_OWNER }} | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: terragrunt run-all apply --terragrunt-non-interactive |