├── .gitignore ├── .pre-commit-config.yaml ├── .terraform-docs.yml ├── .terraform-version ├── .terraform.lock.hcl ├── .tflint.hcl ├── LICENSE ├── README.md ├── backend.tf ├── config.auto.tfvars ├── data.tf ├── images └── example.png ├── locals.tf ├── main.tf ├── modules └── example │ ├── .terraform-docs.yml │ ├── locals.tf │ ├── main.tf │ └── variables.tf ├── providers.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/.terraform-docs.yml -------------------------------------------------------------------------------- /.terraform-version: -------------------------------------------------------------------------------- 1 | latest:^1.3 2 | -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/.tflint.hcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/README.md -------------------------------------------------------------------------------- /backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/backend.tf -------------------------------------------------------------------------------- /config.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/config.auto.tfvars -------------------------------------------------------------------------------- /data.tf: -------------------------------------------------------------------------------- 1 | # data -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/images/example.png -------------------------------------------------------------------------------- /locals.tf: -------------------------------------------------------------------------------- 1 | # locals -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/main.tf -------------------------------------------------------------------------------- /modules/example/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/modules/example/.terraform-docs.yml -------------------------------------------------------------------------------- /modules/example/locals.tf: -------------------------------------------------------------------------------- 1 | # example/locals -------------------------------------------------------------------------------- /modules/example/main.tf: -------------------------------------------------------------------------------- 1 | # example/main -------------------------------------------------------------------------------- /modules/example/variables.tf: -------------------------------------------------------------------------------- 1 | # example/variables -------------------------------------------------------------------------------- /providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/providers.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyscott1547/terraform-template-project/HEAD/variables.tf --------------------------------------------------------------------------------