Skip to content

Commit

Permalink
fix: Reduce required versions for Terraform and AWS provider (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Jun 28, 2022
1 parent d401b7f commit f80bc66
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -137,14 +137,14 @@ Examples codified under the [`examples`](https://github.com/terraform-aws-module

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.72 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.72 |

## Modules

Expand Down
6 changes: 3 additions & 3 deletions examples/complete/README.md
Expand Up @@ -24,14 +24,14 @@ Note that this example may create resources which will incur monetary charges on

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.72 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.72 |

## Modules

Expand Down
4 changes: 2 additions & 2 deletions examples/complete/versions.tf
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 1.0"
required_version = ">= 0.13.1"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.0"
version = ">= 3.72"
}
}
}
4 changes: 2 additions & 2 deletions versions.tf
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 1.0"
required_version = ">= 0.13.1"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.0"
version = ">= 3.72"
}
}
}

0 comments on commit f80bc66

Please sign in to comment.