Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Apr 6, 2021
2 parents bcb4e4e + 7118cee commit 38c0aea
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 15 deletions.
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: 16254fab5eac22dd1bf46b971c43460805cb6fa3 # frozen: v1.45.0
rev: 11b2e8d78664dc1f8e989a5340d929a844492896 # frozen: v1.48.0
hooks:
- id: terraform_fmt
- id: terraform_validate
Expand Down
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,47 @@

Template of a minimal Terraform module.

This module follows the [standard structure][standard-module-structure] described in the [Terraform documentation][terraform-docs].
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:
The following non-standard but commonly used files and folders have also been
added:

* `local.tf`
* `data.tf`
* `providers.tf`
* `templates`
* `versions.tf`

A [pre-commit][pre-commit] configuration file is present to automatically format and validate the code and update the readme file upon Git commits.
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 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.0 |

## Providers

No provider.
No providers.

## Modules

No modules.

## Resources

No resources.

## Inputs

No input.
No inputs.

## Outputs

No output.

No outputs.
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

[pre-commit]: https://pre-commit.com/ "pre-commit Website"
Expand Down
6 changes: 0 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# https://www.terraform.io/docs/configuration/terraform.html#terraform-block-syntax.
terraform {
required_version = ">= 0.12.0"

required_providers {
}
}
1 change: 1 addition & 0 deletions providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# https://www.terraform.io/docs/language/providers/index.html.
7 changes: 7 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://www.terraform.io/docs/configuration/terraform.html#terraform-block-syntax.
terraform {
required_version = ">= 0.12.0"

required_providers {
}
}

0 comments on commit 38c0aea

Please sign in to comment.