Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Above example is just a simple example to call workflow from github shared workf
- [Terraform Drift Workflow](./docs/tf-drift.md)
- [Terraform Lint Workflow](./docs/tf-lint.md)
- [Terraform Monorepo Tag Release Workflow](./docs/tf-monorepo-tag-release.md)
- [Terraform PR Checks Workflow](./docs/tf-pr-checks.md)
- [Terraform Plan Difference Checks Workflow](./docs/tf-diff-checks.md)
- [Terraform Smurf Workflow](./docs/tf-smurf.md)
- [Terraform Workflow](./docs/tf-workflow.md)

Expand Down Expand Up @@ -370,4 +370,4 @@ At [CloudDrove][website], has extensive experience in designing, building & migr
[linkedin]: https://cpco.io/linkedin
[twitter]: https://twitter.com/clouddrove/
[email]: https://clouddrove.com/contact-us.html
[terraform_modules]: https://github.com/clouddrove?utf8=%E2%9C%93&q=terraform-&type=&language=
[terraform_modules]: https://github.com/clouddrove?utf8=%E2%9C%93&q=terraform-&type=&language=
8 changes: 4 additions & 4 deletions docs/tf-pr-checks.md β†’ docs/tf-diff-checks.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

---

## [Terraform plan PR Diff Workflow](https://github.com/clouddrove/github-shared-workflows/blob/master/.github/workflows/tf-pr-checks.yml)
## [Terraform plan PR Diff Workflow](https://github.com/clouddrove/github-shared-workflows/blob/master/.github/workflows/tf-diff-checks.yml)

This workflow automatically run a terraform plan command for the PR and for the master and generate a comparison between them. It utilizes the workflows defined in `.github/workflows/tf-pr-checks.yaml`.
This workflow automatically run a terraform plan command for the PR and for the master and generate a comparison between them. It utilizes the workflows defined in `.github/workflows/tf-diff-checks.yaml`.

### Features
- Make it easy to decide the new tag version.
Expand All @@ -25,12 +25,12 @@ on:

jobs:
complete-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-pr-checks.yaml@v2
uses: clouddrove/github-shared-workflows/.github/workflows/tf-diff-checks.yml@v2
with:
provider: 'azurerm'
terraform_directory: 'examples/complete'
target_branch: 'master'
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
```
```
Loading