equinor / terraform-baseline

Best practices for creating reusable Terraform modules using the Azure provider
https://equinor.github.io/terraform-baseline/
MIT License
10 stars 5 forks source link

Recommend use of Dependabot to keep modules up-to-date #173

Open hknutsen opened 1 month ago

hknutsen commented 1 month ago

Recommended to create a file .github/dependabot.yml in your repository with the following contents:

version: 2
updates:
  - package-ecosystem: terraform
    directories: [/terraform/**/*]
    schedule:
      interval: weekly
      day: monday
    groups:
      terraform:
        patterns: ['*']

This will configure Dependabot to automatically keep Terraform modules up-to-date 🎉

helenakallekleiv commented 1 month ago

@equinor/terraform-baseline-maintainers How about adding this to a new Quick start section/sub-section to best practices?