From 8cdab1ef9baef92de6ce23c316a99f932edb5506 Mon Sep 17 00:00:00 2001 From: Luka Krapic Date: Tue, 12 Nov 2024 10:02:09 +0100 Subject: [PATCH] feat: remove terragrunt validate from the project No env common sensitive information in the repo. --- .github/workflows/continuous-integration.yaml | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 80890cd..3653d29 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -30,29 +30,3 @@ jobs: scan-type: 'fs' scan-ref: '.' trivy-config: .config/trivy.yaml - - - validate-infrastructure: - - name: Terragrunt Infrastructure Checks - - runs-on: ubuntu-latest - - env: - tf_version: '1.9.4' - tg_version: '0.58.10' - working_dir: 'infrastructure/live' - - steps: - - - name: Checkout code - uses: actions/checkout@v2 - - - name: Ensure configuration is valid - uses: gruntwork-io/terragrunt-action@v2 - id: terragrunt-validate - with: - tg_dir: ${{ env.working_dir }} - tf_version: ${{ env.tf_version }} - tg_version: ${{ env.tg_version }} - tg_command: 'run-all validate'