Skip to content

Commit

Permalink
fix: bump min supported version due to types unsupported on current (#22
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bryantbiggs authored Feb 24, 2021
1 parent c639318 commit 9b7d275
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ module "api_gateway" {

| Name | Version |
|------|---------|
| terraform | >= 0.12.6 |
| terraform | >= 0.12.26 |
| aws | >= 2.59 |

## Providers
Expand Down
4 changes: 2 additions & 2 deletions examples/complete-http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Note that this example may create resources which cost money. Run `terraform des

| Name | Version |
|------|---------|
| terraform | >= 0.12.6 |
| terraform | >= 0.12.26 |
| aws | >= 2.59 |
| null | >= 2.0 |
| random | >= 2.0 |
Expand All @@ -39,7 +39,7 @@ Note that this example may create resources which cost money. Run `terraform des
|------|--------|---------|
| acm | terraform-aws-modules/acm/aws | ~> 2.0 |
| api_gateway | ../../ | |
| lambda_function | terraform-aws-modules/lambda/aws | ~> 1.0 |
| lambda_function | terraform-aws-modules/lambda/aws | 1.38 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/complete-http/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ data "null_data_source" "downloaded_package" {

module "lambda_function" {
source = "terraform-aws-modules/lambda/aws"
version = "~> 1.0"
version = "1.38"

function_name = "${random_pet.this.id}-lambda"
description = "My awesome lambda function"
Expand Down
2 changes: 1 addition & 1 deletion examples/complete-http/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.12.6"
required_version = ">= 0.12.26"

required_providers {
aws = ">= 2.59"
Expand Down
4 changes: 2 additions & 2 deletions examples/vpc-link-http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Note that this example may create resources which cost money. Run `terraform des

| Name | Version |
|------|---------|
| terraform | >= 0.12.6 |
| terraform | >= 0.12.26 |
| aws | >= 2.59 |
| null | >= 2.0 |
| random | >= 2.0 |
Expand All @@ -38,7 +38,7 @@ Note that this example may create resources which cost money. Run `terraform des
|------|--------|---------|
| api_gateway | ../../ | |
| api_gateway_security_group | terraform-aws-modules/security-group/aws | ~> 3.0 |
| lambda_function | terraform-aws-modules/lambda/aws | ~> 1.0 |
| lambda_function | terraform-aws-modules/lambda/aws | 1.38 |
| lambda_security_group | terraform-aws-modules/security-group/aws | ~> 3.0 |
| vpc | terraform-aws-modules/vpc/aws | ~> 2.0 |

Expand Down
2 changes: 1 addition & 1 deletion examples/vpc-link-http/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ data "null_data_source" "downloaded_package" {

module "lambda_function" {
source = "terraform-aws-modules/lambda/aws"
version = "~> 1.0"
version = "1.38"

function_name = "${random_pet.this.id}-lambda"
description = "My awesome lambda function"
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc-link-http/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.12.6"
required_version = ">= 0.12.26"

required_providers {
aws = ">= 2.59"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.12.6"
required_version = ">= 0.12.26"

required_providers {
aws = ">= 2.59"
Expand Down

0 comments on commit 9b7d275

Please sign in to comment.