Skip to content

Commit

Permalink
Bump AWS provider version to be in parity with other modules (#4)
Browse files Browse the repository at this point in the history
* AWS provider bump

* Bump version in example
  • Loading branch information
benjaminlukeclark authored Oct 8, 2024
1 parent e96e9b2 commit 9a4e688
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ the module itself, and the [examples](#examples) section which has examples of h
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.5.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.63.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.61.0 |

## Providers

Expand Down
4 changes: 2 additions & 2 deletions examples/email_and_lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.63.0"
version = ">= 5.61.0"
}
}
required_version = "~> 1.5.0"
Expand All @@ -13,7 +13,7 @@ provider "aws" {
}

module "sns" {
source = "github.com/sudoblark/sudoblark.terraform.module.aws.sns?ref=1.0.0"
source = "github.com/sudoblark/sudoblark.terraform.module.aws.sns?ref=1.0.2"

application_name = var.application_name
environment = var.environment
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.63.0"
version = ">= 5.61.0"
}
}
required_version = "~> 1.5.0"
Expand Down

0 comments on commit 9a4e688

Please sign in to comment.