Skip to content

Commit

Permalink
Add plan workflow for github-actions terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
gsf committed Nov 1, 2023
1 parent 9998d0a commit 2b0c1ee
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/github-actions-terraform-plan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Terraform plan for github-actions terraform

on:
pull_request:
paths:
- 'terraform/services/github-actions/**' # Specify the path to trigger the workflow
workflow_dispatch: # Allow manual trigger

permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout

jobs:
check-terraform-fmt:
uses: ./.github/workflows/terraform-fmt.yml
with:
working-directory: ./terraform/services/github-actions

terraform-plan:
steps:
run: echo "TODO Create a reusable terraform-plan workflow to call'

0 comments on commit 2b0c1ee

Please sign in to comment.