@@ -27,7 +27,7 @@ Also Note: CodePipeline and CodeDeploy cannot be used together to deploy a Lambd
2727For a Zip file lambda
2828``` hcl
2929module "lambda_api" {
30- source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.0 "
30+ source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
3131 app_name = "my-lambda-codedeploy-dev"
3232 env = "dev"
3333 zip_filename = "./src/lambda.zip"
@@ -51,7 +51,7 @@ module "lambda_api" {
5151For a docker image lambda:
5252``` hcl
5353module "lambda_api" {
54- source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.0 "
54+ source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v2.0.1 "
5555 app_name = "my-docker-lambda"
5656 image_uri = "my-image-from-my-ecr:latest"
5757 hosted_zone = module.acs.route53_zone
@@ -92,7 +92,7 @@ module "lambda_api" {
9292## Inputs
9393| Name | Type | Description | Default |
9494| --- | --- | --- | --- |
95- | app_name | string | Application name to name your Lambda API and other resources (Must be <= 24 alphanumeric characters) | |
95+ | app_name | string | Application name to name your Lambda API and other resources (Must be <= 28 alphanumeric characters) | |
9696| image_uri | string | ECR Image URI containing the function's deployment package (conflicts with ` zip_file ` )| null |
9797| zip_filename | string | File that contains your compiled or zipped source code. |
9898| zip_handler | string | Lambda event handler |
@@ -231,4 +231,4 @@ If manual rollback is needed after the deployment has completed, that can be don
231231
232232If you require additional variables please create an [ issue] ( https://github.com/byu-oit/terraform-aws-lambda-api/issues )
233233 and/or a [ pull request] ( https://github.com/byu-oit/terraform-aws-lambda-api/pulls ) to add the variable and reach
234- out to the Terraform Working Group on slack (` #terraform ` channel).
234+ out to the Application Engineering SpecOps Green team (` IT Collaboration ` -> ` OIT ENG AppEng - SpecOps Green ` channel).
0 commit comments