diff --git a/.tool-versions b/.tool-versions
index 9a6c09e..9609d85 100644
--- a/.tool-versions
+++ b/.tool-versions
@@ -1,4 +1,4 @@
-terraform 1.2.9
+terraform 1.3.1
terraform-docs 0.16.0
-tflint 0.40.0
+tflint 0.41.0
pre-commit 2.20.0
diff --git a/README.md b/README.md
index 95d4c1b..b300f4a 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-# terraform-module-template
+# terraform-github
## Introduction
-What does the module provide?
+A Terraform module for creating and managing GitHub repositories.
## Usage
@@ -19,7 +19,8 @@ The list of related modules.
| Name | Version |
|------|---------|
-| [terraform](#requirement\_terraform) | >= 1.2.9 |
+| [terraform](#requirement\_terraform) | >= 1.3.1 |
+| [github](#requirement\_github) | >= 5.3.0 |
## Providers
diff --git a/main.tf b/main.tf
index f318c35..6209a15 100644
--- a/main.tf
+++ b/main.tf
@@ -1,5 +1,5 @@
terraform {
- required_version = ">= 1.2.9"
+ required_version = ">= 1.3.1"
required_providers {
# azurerm = {
# source = "hashicorp/azurerm"
@@ -9,9 +9,9 @@ terraform {
# source = "hashicorp/aws"
# version = ">= 4.30.0"
# }
- # github = {
- # source = "integrations/github"
- # version = ">= 4.31.0"
- # }
+ github = {
+ source = "integrations/github"
+ version = ">= 5.3.0"
+ }
}
}