File tree Expand file tree Collapse file tree 6 files changed +13
-10
lines changed
simple-lambda-with-deploy-test Expand file tree Collapse file tree 6 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Also Note: CodePipeline and CodeDeploy cannot be used together to deploy a Lambd
27
27
For a Zip file lambda
28
28
``` hcl
29
29
module "lambda_api" {
30
- source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
30
+ source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
31
31
app_name = "my-lambda-codedeploy-dev"
32
32
zip_filename = "./src/lambda.zip"
33
33
zip_handler = "index.handler"
@@ -50,7 +50,7 @@ module "lambda_api" {
50
50
For a docker image lambda:
51
51
``` hcl
52
52
module "lambda_api" {
53
- source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
53
+ source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
54
54
app_name = "my-docker-lambda"
55
55
image_uri = "my-image-from-my-ecr:latest"
56
56
hosted_zone = module.acs.route53_zone
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.1.0
4
+ 4/22/2022 - ` lambda_layers ` variable added as pass-through to ` layers ` variable of ` aws_lambda_function ` resource
5
+
6
+ ## v2.0.1
7
+ 3/11/2022 - increased ` app_name ` variable length
8
+ - increased ` app_name ` variable length from 24 to 28
9
+
3
10
## v2.0.0
4
11
2/24/2022 - Major breaking changes from v1.x:
5
12
- dropped support for terraform v0.12
10
17
- removed ` use_codedeploy ` variable - just include the codedeploy variables to enable codedeploy
11
18
- removed ` env ` variable - just include the env inside the ` app_name ` variable
12
19
- added ` domain_url ` variable to enable a custom API URL
13
-
14
- ## v2.0.1
15
- 3/11/2022 - increased ` app_name ` variable length
16
- - increased ` app_name ` variable length from 24 to 28
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module "acs" {
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
13
13
app_name = " my-docker-lambda"
14
14
image_uri = " my-image-from-my-ecr:latest"
15
15
hosted_zone = module. acs . route53_zone
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module "acs" {
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
13
13
app_name = " my-lambda-dev"
14
14
zip_filename = " ./src/lambda.zip"
15
15
zip_handler = " index.handler"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module "acs" {
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
13
13
app_name = " my-lambda-dev"
14
14
zip_filename = " ./src/lambda.zip"
15
15
zip_handler = " index.handler"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module "acs" {
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.0 "
13
13
app_name = " my-lambda-codedeploy-dev"
14
14
env = " dev"
15
15
zip_filename = " ./src/lambda.zip"
You can’t perform that action at this time.
0 commit comments