-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add plan workflow for github-actions terraform
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |