diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 165a4db6..89f25155 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -92,5 +92,12 @@ jobs: cd "tests/${{ matrix.package }}" terraform plan fi + - name: Terraform apply + run: | + if [[ ${{ matrix.package }} != "locals_variables" ]];then + cd "tests/${{ matrix.package }}" + terraform apply -auto-approve + terraform destroy -auto-approve + fi