Skip to content

Commit

Permalink
Bump AWS provider version (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminlukeclark authored Oct 8, 2024
1 parent c121321 commit c7da9e5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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) | ~> 5.27.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.61.0 |

## Providers

Expand Down
4 changes: 2 additions & 2 deletions examples/lambda_target/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 = "~> 5.27.0"
version = ">= 5.61.0"
}
}
required_version = "~> 1.5.0"
Expand All @@ -13,7 +13,7 @@ provider "aws" {
}

module "event_bridge" {
source = "github.com/sudoblark/sudoblark.terraform.module.aws.event_bridge_rule?ref=1.0.0"
source = "github.com/sudoblark/sudoblark.terraform.module.aws.event_bridge_rule?ref=1.0.1"

application_name = var.application_name
environment = var.environment
Expand Down
4 changes: 2 additions & 2 deletions examples/state_machine_target/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 = "~> 5.27.0"
version = ">= 5.61.0"
}
}
required_version = "~> 1.5.0"
Expand All @@ -13,7 +13,7 @@ provider "aws" {
}

module "event_bridge" {
source = "github.com/sudoblark/sudoblark.terraform.module.aws.event_bridge_rule?ref=1.0.0"
source = "github.com/sudoblark/sudoblark.terraform.module.aws.event_bridge_rule?ref=1.0.1"

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 = "~> 5.27.0"
version = ">= 5.61.0"
}
}
required_version = "~> 1.5.0"
Expand Down

0 comments on commit c7da9e5

Please sign in to comment.