Skip to content

Commit

Permalink
add terraform plan action
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyson-miller committed Nov 13, 2023
1 parent ed70473 commit 0509a2d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/terraform-plan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: PR Terraform Plan

on: [pull_request]

permissions:
contents: read
pull-requests: write

jobs:
plan:
runs-on: ubuntu-latest
name: Create terraform plan
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: terraform plan
uses: dflook/terraform-plan@v1
with:
path: terraform-incubator/vrms-client/dev

0 comments on commit 0509a2d

Please sign in to comment.