diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 9223e3c..efc335f 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.103.0
+ rev: v1.104.0
hooks:
- id: terraform_fmt
- id: terraform_docs
diff --git a/README.md b/README.md
index 568355b..6176fe3 100644
--- a/README.md
+++ b/README.md
@@ -134,13 +134,13 @@ module "step_function" {
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
## Modules
diff --git a/examples/complete/README.md b/examples/complete/README.md
index f1cde7c..23f6fc6 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -23,7 +23,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [null](#requirement\_null) | >= 2 |
| [random](#requirement\_random) | >= 2 |
@@ -31,7 +31,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [null](#provider\_null) | >= 2 |
| [random](#provider\_random) | >= 2 |
diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf
index f3c7855..bf7f4e5 100644
--- a/examples/complete/versions.tf
+++ b/examples/complete/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/versions.tf b/versions.tf
index db13b0a..4fc026f 100644
--- a/versions.tf
+++ b/versions.tf
@@ -4,7 +4,13 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}