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

fix: Updated supported Terraform versions (#18)

parent 88469893
repos:
- repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.40.0
rev: v1.44.0
hooks:
- id: terraform_fmt
- id: terraform_validate
- id: terraform_docs
- id: terraform_tflint
args:
......@@ -20,6 +21,6 @@ repos:
- '--args=--only=terraform_standard_module_structure'
- '--args=--only=terraform_workspace_remote'
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v3.3.0
hooks:
- id: check-merge-conflict
......@@ -19,8 +19,8 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.49, < 4.0 |
| terraform | >= 0.12.6 |
| aws | >= 2.49 |
## Providers
......
terraform {
required_version = ">= 0.12.6, < 0.14"
required_version = ">= 0.12.6"
required_providers {
aws = ">= 2.49, < 4.0"
aws = ">= 2.49"
}
}
......@@ -7,14 +7,14 @@ This module creates DNS records in Route53 zone.
| Name | Version |
|------|---------|
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.49, < 4.0 |
| terraform | >= 0.12.6 |
| aws | >= 2.49 |
## Providers
| Name | Version |
|------|---------|
| aws | >= 2.49, < 4.0 |
| aws | >= 2.49 |
## Inputs
......
terraform {
required_version = ">= 0.12.6, < 0.14"
required_version = ">= 0.12.6"
required_providers {
aws = ">= 2.49, < 4.0"
aws = ">= 2.49"
}
}
......@@ -7,14 +7,14 @@ This module creates Route53 zones.
| Name | Version |
|------|---------|
| terraform | >= 0.12.6, < 0.14 |
| aws | >= 2.49, < 4.0 |
| terraform | >= 0.12.6 |
| aws | >= 2.49 |
## Providers
| Name | Version |
|------|---------|
| aws | >= 2.49, < 4.0 |
| aws | >= 2.49 |
## Inputs
......
terraform {
required_version = ">= 0.12.6, < 0.14"
required_version = ">= 0.12.6"
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