Skip to content

Commit

Permalink
Bump version to v5.8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Zimmer <[email protected]>
  • Loading branch information
moritzzimmer committed Jan 13, 2021
1 parent a283737 commit 597f4e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS Lambda Terraform module

![](https://github.com/moritzzimmer/terraform-aws-lambda/workflows/Terraform%20CI/badge.svg) [![Terraform Module Registry](https://img.shields.io/badge/Terraform%20Module%20Registry-5.7.0-blue.svg)](https://registry.terraform.io/modules/moritzzimmer/lambda/aws/5.7.0) ![Terraform Version](https://img.shields.io/badge/Terraform-0.12+-green.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![](https://github.com/moritzzimmer/terraform-aws-lambda/workflows/Terraform%20CI/badge.svg) [![Terraform Module Registry](https://img.shields.io/badge/Terraform%20Module%20Registry-5.8.0-blue.svg)](https://registry.terraform.io/modules/moritzzimmer/lambda/aws/5.8.0) ![Terraform Version](https://img.shields.io/badge/Terraform-0.12+-green.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Terraform module to create AWS [Lambda](https://www.terraform.io/docs/providers/aws/r/lambda_function.html) and accompanying resources for an efficient and secure
development of Lambda functions like:
Expand Down Expand Up @@ -40,7 +40,7 @@ provider "aws" {
module "lambda" {
source = "moritzzimmer/lambda/aws"
version = "5.7.0"
version = "5.8.0"
filename = "my-package.zip"
function_name = "my-function"
handler = "my-handler"
Expand All @@ -54,7 +54,7 @@ module "lambda" {
```hcl
module "lambda" {
source = "moritzzimmer/lambda/aws"
version = "5.7.0"
version = "5.8.0"
function_name = "my-function"
image_uri = "111111111111.dkr.ecr.eu-west-1.amazonaws.com/my-image"
package_type = "Image"
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v5.7.0
v5.8.0
6 changes: 3 additions & 3 deletions docs/part1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS Lambda Terraform module

![](https://github.com/moritzzimmer/terraform-aws-lambda/workflows/Terraform%20CI/badge.svg) [![Terraform Module Registry](https://img.shields.io/badge/Terraform%20Module%20Registry-5.7.0-blue.svg)](https://registry.terraform.io/modules/moritzzimmer/lambda/aws/5.7.0) ![Terraform Version](https://img.shields.io/badge/Terraform-0.12+-green.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![](https://github.com/moritzzimmer/terraform-aws-lambda/workflows/Terraform%20CI/badge.svg) [![Terraform Module Registry](https://img.shields.io/badge/Terraform%20Module%20Registry-5.8.0-blue.svg)](https://registry.terraform.io/modules/moritzzimmer/lambda/aws/5.8.0) ![Terraform Version](https://img.shields.io/badge/Terraform-0.12+-green.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Terraform module to create AWS [Lambda](https://www.terraform.io/docs/providers/aws/r/lambda_function.html) and accompanying resources for an efficient and secure
development of Lambda functions like:
Expand Down Expand Up @@ -40,7 +40,7 @@ provider "aws" {
module "lambda" {
source = "moritzzimmer/lambda/aws"
version = "5.7.0"
version = "5.8.0"
filename = "my-package.zip"
function_name = "my-function"
handler = "my-handler"
Expand All @@ -54,7 +54,7 @@ module "lambda" {
```hcl
module "lambda" {
source = "moritzzimmer/lambda/aws"
version = "5.7.0"
version = "5.8.0"
function_name = "my-function"
image_uri = "111111111111.dkr.ecr.eu-west-1.amazonaws.com/my-image"
package_type = "Image"
Expand Down

0 comments on commit 597f4e0

Please sign in to comment.