https://github.com/answerdigital/terraform-modules
Infrastructure-as-code shared modules
https://github.com/answerdigital/terraform-modules
Last synced: about 1 month ago
JSON representation
Infrastructure-as-code shared modules
- Host: GitHub
- URL: https://github.com/answerdigital/terraform-modules
- Owner: answerdigital
- License: mit
- Created: 2023-01-04T12:24:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-01T11:17:41.000Z (about 1 year ago)
- Last Synced: 2025-05-01T11:33:43.171Z (about 1 year ago)
- Language: HCL
- Homepage:
- Size: 518 KB
- Stars: 3
- Watchers: 6
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-modules
The repo for Answer Digital shared Terraform modules.
## Using these modules
You can use these modules in your own terraform projects as follows:
```hcl
module "ec2_setup" {
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v5"
}
```
Notice the double `//` between the repository URL and the path to the module.
For further information please see the [terraform documentation](https://developer.hashicorp.com/terraform/language/modules/sources#modules-in-package-sub-directories).
Versions are shared across all modules. You can choose a specific tag (e.g. `?ref=v5.0.0`) or to get the latest changes within a major version, use `?ref=v5` which will get the latest v5.x.x release.
## Documentation
Further documentation can be found in the [wiki](https://github.com/answerdigital/terraform-modules/wiki).