Commit c5d53821 authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

fix: Updated supported Terraform versions (#18)

parent 88469893
repos: repos:
- repo: git://github.com/antonbabenko/pre-commit-terraform - repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.40.0 rev: v1.44.0
hooks: hooks:
- id: terraform_fmt - id: terraform_fmt
- id: terraform_validate
- id: terraform_docs - id: terraform_docs
- id: terraform_tflint - id: terraform_tflint
args: args:
...@@ -20,6 +21,6 @@ repos: ...@@ -20,6 +21,6 @@ repos:
- '--args=--only=terraform_standard_module_structure' - '--args=--only=terraform_standard_module_structure'
- '--args=--only=terraform_workspace_remote' - '--args=--only=terraform_workspace_remote'
- repo: git://github.com/pre-commit/pre-commit-hooks - repo: git://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0 rev: v3.3.0
hooks: hooks:
- id: check-merge-conflict - id: check-merge-conflict
...@@ -19,8 +19,8 @@ Note that this example may create resources which cost money. Run `terraform des ...@@ -19,8 +19,8 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | >= 0.12.6, < 0.14 | | terraform | >= 0.12.6 |
| aws | >= 2.49, < 4.0 | | aws | >= 2.49 |
## Providers ## Providers
......
terraform { terraform {
required_version = ">= 0.12.6, < 0.14" required_version = ">= 0.12.6"
required_providers { required_providers {
aws = ">= 2.49, < 4.0" aws = ">= 2.49"
} }
} }
...@@ -7,14 +7,14 @@ This module creates DNS records in Route53 zone. ...@@ -7,14 +7,14 @@ This module creates DNS records in Route53 zone.
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | >= 0.12.6, < 0.14 | | terraform | >= 0.12.6 |
| aws | >= 2.49, < 4.0 | | aws | >= 2.49 |
## Providers ## Providers
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| aws | >= 2.49, < 4.0 | | aws | >= 2.49 |
## Inputs ## Inputs
......
terraform { terraform {
required_version = ">= 0.12.6, < 0.14" required_version = ">= 0.12.6"
required_providers { required_providers {
aws = ">= 2.49, < 4.0" aws = ">= 2.49"
} }
} }
...@@ -7,14 +7,14 @@ This module creates Route53 zones. ...@@ -7,14 +7,14 @@ This module creates Route53 zones.
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | >= 0.12.6, < 0.14 | | terraform | >= 0.12.6 |
| aws | >= 2.49, < 4.0 | | aws | >= 2.49 |
## Providers ## Providers
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| aws | >= 2.49, < 4.0 | | aws | >= 2.49 |
## Inputs ## Inputs
......
terraform { terraform {
required_version = ">= 0.12.6, < 0.14" required_version = ">= 0.12.6"
required_providers { required_providers {
aws = ">= 2.49, < 4.0" aws = ">= 2.49"
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment