Skip to content
Open
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
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,31 @@ updates:
- "Crew"
# Allow up to 3 open pull requests for pip dependencies
open-pull-requests-limit: 3

- package-ecosystem: "terraform" # See documentation for possible values
directory: "/examples/firewall-with-isolated-rules" # Location of package manifests
schedule:
interval: "daily"
# Add assignees
assignees:
- "clouddrove-ci"
# Add reviewer
reviewers:
- "approvers"
- "Crew"
# Allow up to 3 open pull requests for pip dependencies
open-pull-requests-limit: 3
Comment on lines +59 to +60

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This comment appears to be a copy-paste from a pip dependency configuration. It should be updated to be relevant for Terraform dependencies or removed for clarity.

    # Allow up to 3 open pull requests for terraform dependencies
    open-pull-requests-limit: 3


- package-ecosystem: "terraform" # See documentation for possible values
directory: "/examples/firewall-with-public-ip-prefix" # Location of package manifests
schedule:
interval: "daily"
# Add assignees
assignees:
- "clouddrove-ci"
# Add reviewer
reviewers:
- "approvers"
- "Crew"
# Allow up to 3 open pull requests for pip dependencies
open-pull-requests-limit: 3
Comment on lines +73 to +74

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This comment appears to be a copy-paste from a pip dependency configuration. It should be updated to be relevant for Terraform dependencies or removed for clarity.

    # Allow up to 3 open pull requests for terraform dependencies
    open-pull-requests-limit: 3

13 changes: 0 additions & 13 deletions .github/workflows/changelog.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/readme.yml

This file was deleted.

22 changes: 21 additions & 1 deletion .github/workflows/terraform-diff.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Terraform plan Difference
name: Terraform Plan Difference
on:
pull_request:
branches:
Expand All @@ -12,6 +12,26 @@ jobs:
provider: 'azurerm'
terraform_directory: 'examples/complete'
target_branch: 'master'
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}

firewall-with-isolated-rules-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-pr-checks.yaml@master
with:
provider: 'azurerm'
terraform_directory: 'examples/firewall-with-isolated-rules'
target_branch: 'master'
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}

firewall-with-public-ip-prefix-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-pr-checks.yaml@master
with:
provider: 'azurerm'
terraform_directory: 'examples/firewall-with-public-ip-prefix'
target_branch: 'master'
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
11 changes: 10 additions & 1 deletion .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,17 @@ jobs:
complete-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
with:
working_directory: './examples/complete/'
working_directory: 'examples/complete/'

firewall-with-isolated-rules-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
with:
working_directory: 'examples/firewall-with-isolated-rules/'

firewall-with-public-ip-prefix-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
with:
working_directory: 'examples/firewall-with-public-ip-prefix/'
# Seperate Job for TFlint workflow call
tf-lint:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
Expand Down
116 changes: 92 additions & 24 deletions README.md

Large diffs are not rendered by default.

Loading
Loading