├── .github └── workflows │ └── validate.yml.noop ├── .gitignore ├── .markdownlintrc ├── .pre-commit-config.yaml ├── .terraform-docs.yml ├── .terraform-version ├── .terraform.lock.hcl ├── .trivyignore.yaml ├── LICENSE ├── Makefile ├── README.md ├── main.tf ├── outputs.tf ├── renovate.json ├── terraform.tf ├── trivy.yaml └── variables.tf /.github/workflows/validate.yml.noop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.github/workflows/validate.yml.noop -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.terraform-docs.yml -------------------------------------------------------------------------------- /.terraform-version: -------------------------------------------------------------------------------- 1 | 1.5.7 2 | -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /.trivyignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/.trivyignore.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- 1 | # main.tf placeholder 2 | -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- 1 | # Outputs placeholder 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/renovate.json -------------------------------------------------------------------------------- /terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/terraform.tf -------------------------------------------------------------------------------- /trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trussworks/terraform-module-template/HEAD/trivy.yaml -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- 1 | # Variables placeholder 2 | --------------------------------------------------------------------------------