diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index ade44ffa..c67ffe84 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -21,7 +21,6 @@ repos:
- '--args=--only=terraform_required_providers'
- '--args=--only=terraform_standard_module_structure'
- '--args=--only=terraform_workspace_remote'
- - '--args=--only=terraform_unused_required_providers'
- id: terraform_validate
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
diff --git a/README.md b/README.md
index 96b23bed..37eeae0d 100644
--- a/README.md
+++ b/README.md
@@ -210,6 +210,7 @@ Users have the ability to:
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.0 |
+| [aws](#requirement\_aws) | >= 5.36 |
## Providers
diff --git a/versions.tf b/versions.tf
index 7117131f..3b3b588a 100644
--- a/versions.tf
+++ b/versions.tf
@@ -1,3 +1,10 @@
terraform {
required_version = ">= 1.0"
+
+ required_providers {
+ aws = {
+ source = "hashicorp/aws"
+ version = ">= 5.36"
+ }
+ }
}