From aafdf31954811dad69104e1b6b599a397917d035 Mon Sep 17 00:00:00 2001 From: Katya Bilokur Date: Tue, 20 Aug 2024 16:33:20 +1000 Subject: [PATCH] Add terraform apply step --- .github/workflows/infrastructure.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/infrastructure.yaml b/.github/workflows/infrastructure.yaml index 7bf4607..8a73c40 100644 --- a/.github/workflows/infrastructure.yaml +++ b/.github/workflows/infrastructure.yaml @@ -24,5 +24,7 @@ jobs: - name: Terraform validate run: terraform validate - name: Terraform plan - run: terraform plan + run: terraform plan -out default.tfplan continue-on-error: false + - name: Terraform apply + run: terraform apply default.tfplan