diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index ec26dc9..47f7353 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -25,14 +25,9 @@ jobs: - name: Terraform Init run: terraform init - # Generates an execution plan for Terraform - - name: Terraform Plan - run: terraform plan -input=false - # On push to "main", build or change infrastructure according to Terraform configuration files # Note: It is recommended to set up a required "strict" status check in your repository for "Terraform Cloud". See the documentation on "strict" required status checks for more information: https://help.github.com/en/github/administering-a-repository/types-of-required-status-checks - name: Terraform Apply - if: github.ref == 'refs/heads/"main"' && github.event_name == 'push' run: terraform apply -auto-approve -input=false - name: Set up Python