Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.2.0

- [Bump hashicorp/aws dependency](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/14)

## v1.1.0
- [Add layers attribute](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/7)
- [Add secret environment variables attribute](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/8)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This module creates a Lambda function, as well as its IAM role and CloudWatch Lo
```tf
module "lambda" {
source = "babbel/lambda-with-inline-code/aws"
version = "~> 1.0"
version = "~> 1.2"

function_name = "example"
description = "This is an example"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
}
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
version = ">= 3, < 5"
}
}
}