Skip to content

Commit

Permalink
feat: Updated AWS provider to version 4.8+ (#22)
Browse files Browse the repository at this point in the history
* Update versions.tf

* update lambda to 3.1.1
  • Loading branch information
cageyv authored Apr 19, 2022
1 parent b3dd0d2 commit 6b23ad3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "lambda" {
source = "terraform-aws-modules/lambda/aws"
version = "2.25.0"
version = "3.1.1"

function_name = var.function_name
description = "Send CloudTrail Events to Slack"
Expand Down
19 changes: 17 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
terraform {
required_version = ">= 0.12.31"
required_version = ">= 0.13.1"

required_providers {
aws = "~>3.0, >= 3.43"
aws = {
source = "hashicorp/aws"
version = ">= 4.8"
}
external = {
source = "hashicorp/external"
version = ">= 1.0"
}
local = {
source = "hashicorp/local"
version = ">= 1.0"
}
null = {
source = "hashicorp/null"
version = ">= 2.0"
}
}
}

0 comments on commit 6b23ad3

Please sign in to comment.