{"id":37563750,"url":"https://github.com/dfds/azure-infrastructure-modules","last_synced_at":"2026-01-16T09:11:45.221Z","repository":{"id":228780061,"uuid":"752984331","full_name":"dfds/azure-infrastructure-modules","owner":"dfds","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-02T18:21:11.000Z","size":61,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-13T04:42:18.674Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dfds.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-05T08:41:45.000Z","updated_at":"2025-10-02T18:21:15.000Z","dependencies_parsed_at":"2024-03-31T14:26:03.007Z","dependency_job_id":"0366079e-de52-4737-a505-c27bef16cfc9","html_url":"https://github.com/dfds/azure-infrastructure-modules","commit_stats":null,"previous_names":["dfds/azure-infrastructure-modules"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/dfds/azure-infrastructure-modules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfds%2Fazure-infrastructure-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfds%2Fazure-infrastructure-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfds%2Fazure-infrastructure-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfds%2Fazure-infrastructure-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dfds","download_url":"https://codeload.github.com/dfds/azure-infrastructure-modules/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dfds%2Fazure-infrastructure-modules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-16T09:11:45.129Z","updated_at":"2026-01-16T09:11:45.205Z","avatar_url":"https://github.com/dfds.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://dev.azure.com/dfds/DevelopmentExcellence/_apis/build/status/Infrastructure-Modules%20QA?branchName=master)](https://dev.azure.com/dfds/DevelopmentExcellence/_build/latest?definitionId=1656\u0026branchName=master)\n\n# infrastructure-modules\n\nTerraform modules for infrastructure\n\nContainers to run this: https://hub.docker.com/u/dfdsdk\n\n## Terraform Best Practices\n\n### Terraform Files\n\n- main.tf\n- outputs.tf\n- vars.tf\n\n### Terraform Module Folder Structure\n\nWe recommend a folder structure for Terraform modules like so:\n\n```\nmodule-category\n └ module-name\n    └ README.md\n    └ main.tf\n    └ outputs.tf\n    └ vars.tf\n```\n\nExample:\n```\nsecurity\n └ iam-account-alias\n    └ README.md\n    └ main.tf\n    └ outputs.tf\n    └ vars.tf\n └ org-account\n    └ README.md\n    └ main.tf\n    └ outputs.tf\n    └ vars.tf\nnetwork\n └ ...\n```\n\n## Test/QA\n\n```\n\n## Release process\n\nBranch protection is not enabled on this repo. Instead we rely on release tags to ensure we do not commit straight to production.\n\nWhen creating a new release, it's important to ensure only the intended changes are included, not changes others may have committed to *master* without also creating a release.\n\nBefore creating the release, you should compare the commit you want to release against the latest release, and ensure only intended changes are included.\n\nIn this example, I am comparing the lastest release (**0.1.35**) against the commit I plan to release (**75bec8f**).\n\nhttps://github.com/dfds/infrastructure-modules/compare/0.1.35..75bec8f\n\n### Pre-Commit Hooks (Optional)\n\nThis repo defines Git pre-commit hooks intended for use with pre-commit.\n\nInstall pre-commit. E.g. brew install pre-commit. https://pre-commit.com/#install\nRun pre-commit install in the repo.\nThat’s it! Now every time you commit a code change (.tf file), the hooks in the hooks: config will execute.\n\n### Credits\n\nThe general structure of these modules, file layout etc. are largely based on Gruntwork's recommendations. More specifically the blog posts:\n\n* [Gruntwork blog: How to manage Terraform state](https://blog.gruntwork.io/how-to-manage-terraform-state-28f5697e68fa)\n* [Gruntwork blog: How to create reusable infrastructure with Terraform modules](https://blog.gruntwork.io/how-to-create-reusable-infrastructure-with-terraform-modules-25526d65f73d)\n* [Gruntwork blog: How to use Terraform as a team](https://blog.gruntwork.io/how-to-use-terraform-as-a-team-251bc1104973)\n\nGruntwork's example repos, of both modules and live/input data, along with their README files have also proven very useful:\n\n* [Github: gruntwork-io/terragrunt-infrastructure-live-example](https://github.com/gruntwork-io/terragrunt-infrastructure-live-example)\n* [Github: gruntwork-io/terragrunt-infrastructure-modules-example](https://github.com/gruntwork-io/terragrunt-infrastructure-modules-example)\n\nTo workaround some of Terraform's quirks and shortcomings:\n\n* [Gruntwork blog: Terraform tips \u0026 tricks: loops, if-statements, and gotchas](https://blog.gruntwork.io/terraform-tips-tricks-loops-if-statements-and-gotchas-f739bbae55f9)\n\nOther inspiration:\n\n* https://www.ybrikman.com/writing/2017/10/13/reusable-composable-battle-tested-terraform-modules/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfds%2Fazure-infrastructure-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdfds%2Fazure-infrastructure-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdfds%2Fazure-infrastructure-modules/lists"}