NEW: added versions.tf and updated read me once again

This commit is contained in:
xpk 2024-02-09 10:35:15 +08:00
parent 1c3e7f8bc6
commit c05b8f5641
Signed by: xpk
GPG Key ID: CD4FF6793F09AB86
2 changed files with 14 additions and 2 deletions

View File

@ -9,13 +9,16 @@ This module performs the following tasks:
## Requirements
No requirements.
| Name | Version |
|------|---------|
| terraform | >= 1.3.0 |
| aws | >= 5.0 |
## Providers
| Name | Version |
|------|---------|
| aws | n/a |
| aws | >= 5.0 |
| random | n/a |
## Modules

View File

@ -0,0 +1,9 @@
terraform {
required_version = ">= 1.3.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
}
}
}