Skip to content

Commit

Permalink
github action for terraform plan test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyson-miller committed Nov 15, 2023
1 parent bda977e commit de7bd59
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/terraform-plan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION_PROD }}
- 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 de7bd59

Please sign in to comment.