Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trussworks/terraform-module-template
Template repo with Terraform module basics
https://github.com/trussworks/terraform-module-template
template terraform terraform-module
Last synced: 2 months ago
JSON representation
Template repo with Terraform module basics
- Host: GitHub
- URL: https://github.com/trussworks/terraform-module-template
- Owner: trussworks
- License: apache-2.0
- Created: 2019-09-11T00:35:39.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T07:34:14.000Z (5 months ago)
- Last Synced: 2024-10-31T13:23:52.450Z (3 months ago)
- Topics: template, terraform, terraform-module
- Language: Makefile
- Homepage:
- Size: 1.32 MB
- Stars: 22
- Watchers: 8
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - trussworks/terraform-module-template - Template repo with Terraform module basics (Makefile)
README
# Truss Terraform Module template
This repository is meant to be a template repo we can just spin up new module
repos from with our general format.## Creating a new Terraform Module
1. Clone this repo, renaming appropriately.
1. Write your terraform code in the root dir.## Actual readme below - Delete above here
Please put a description of what this module does here
## Usage
### Put an example usage of the module here
```hcl
module "example" {
source = "terraform/registry/path"
}
```## Requirements
| Name | Version |
|------|---------|
| terraform | >= 1.3.7 |
| aws | ~> 4.52.0 |## Providers
No providers.
## Modules
No modules.
## Resources
No resources.
## Inputs
No inputs.
## Outputs
No outputs.
## Developer Setup
Install dependencies (macOS)
```shell
brew install pre-commit tfenv terraform-docs
tfenv install
pre-commit install --install-hooks
```