Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Jan 3, 2021
2 parents cb45fba + 8e37a90 commit bcb4e4e
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: b45a728a922c5916d37060aaa1fdad9b8b702d79 # frozen: v1.25.0
rev: 16254fab5eac22dd1bf46b971c43460805cb6fa3 # frozen: v1.45.0
hooks:
- id: terraform_fmt
- id: terraform_validate
Expand Down
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,35 @@ Template of a minimal Terraform module.

This module follows the [standard structure][standard-module-structure] described in the [Terraform documentation][terraform-docs].

The following non-standard but commonly used files and folders have also been added:

* `local.tf`
* `data.tf`
* `templates`

A [pre-commit][pre-commit] configuration file is present to automatically format and validate the code and update the readme file upon Git commits.

<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |

## Providers

No provider.

## Inputs

No input.

## Outputs

No output.

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

[pre-commit]: https://pre-commit.com/ "pre-commit Website"
[standard-module-structure]: https://www.terraform.io/docs/modules/index.html#standard-module-structure "Terraform Documentation - Standard Module Structure"
[terraform-docs]: https://www.terraform.io/docs/ "Terraform Documentation"
1 change: 1 addition & 0 deletions data.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# https://www.terraform.io/docs/configuration/data-sources.html.
3 changes: 3 additions & 0 deletions local.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.terraform.io/docs/configuration/locals.html.
locals {
}
Empty file added templates/.gitkeep
Empty file.
10 changes: 10 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# ----------------------------------------
# Required Variables
# ----------------------------------------


# ----------------------------------------
# Optional Variables
# ----------------------------------------


0 comments on commit bcb4e4e

Please sign in to comment.