From 837e9001d4f6959692f5a6e546672ec105410443 Mon Sep 17 00:00:00 2001 From: Lucioschenkel Date: Tue, 31 Dec 2024 16:53:58 -0300 Subject: [PATCH] refactor: add apply step to terraform pipeline --- .github/workflows/terraform-pipeline.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/terraform-pipeline.yml b/.github/workflows/terraform-pipeline.yml index cb37a3c..c39b7e6 100644 --- a/.github/workflows/terraform-pipeline.yml +++ b/.github/workflows/terraform-pipeline.yml @@ -69,9 +69,6 @@ jobs: PLAN_OUTCOME="${{ steps.plan.outcome }}" PLAN_OUTPUT="${{ steps.plan.outputs.stdout }}" - # The following language="..." comment enables syntax highlighting in JetBrains IDEs - - # language="markdown" template: | #### Terraform Format and Style 🖌`$FMT_OUTCOME` @@ -139,11 +136,6 @@ jobs: name: plan path: ./terraform - - name: Inspect plan file - run: | - ls -algh . - ls -algh terraform-plan - - # - name: Terraform apply - # run: terraform apply -auto-approve terraform-plan + - name: Terraform apply + run: terraform apply -auto-approve terraform-plan