Skip to content

Commit 01c2eb4

Browse files
authored
Merge pull request #1392 from plus3it/dependabot/terraform/lambda--github--terraform-aws-modules/terraform-aws-lambda--v7.7.1-7.17.1
2 parents 9af7e3f + 2367137 commit 01c2eb4

File tree

11 files changed

+20
-10
lines changed

11 files changed

+20
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.1
2+
current_version = 0.2.2
33
commit = True
44
message = Bumps version to {new_version}
55
tag = False

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ concurrency:
88

99
jobs:
1010
lint:
11-
uses: plus3it/actions-workflows/.github/workflows/lint.yml@9007628375ab63a531541d305dc61375ef0c8215
11+
uses: plus3it/actions-workflows/.github/workflows/lint.yml@00bdf2c02c2bb252dc7ba7f74816ac8359aa6693

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ on:
1414

1515
jobs:
1616
release:
17-
uses: plus3it/actions-workflows/.github/workflows/release.yml@9007628375ab63a531541d305dc61375ef0c8215
17+
uses: plus3it/actions-workflows/.github/workflows/release.yml@00bdf2c02c2bb252dc7ba7f74816ac8359aa6693
1818
secrets:
1919
release-token: ${{ secrets.GH_RELEASES_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ concurrency:
88

99
jobs:
1010
test:
11-
uses: plus3it/actions-workflows/.github/workflows/test.yml@9007628375ab63a531541d305dc61375ef0c8215
11+
uses: plus3it/actions-workflows/.github/workflows/test.yml@00bdf2c02c2bb252dc7ba7f74816ac8359aa6693

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
### 0.2.2
8+
9+
**Commit Delta**: N/A
10+
11+
**Released**: 2025.01.07
12+
13+
**Summary**:
14+
15+
* Defaults lambda runtime to python 3.12
16+
717
### 0.2.1
818

919
**Commit Delta**: N/A

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM plus3it/tardigrade-ci:0.25.3
1+
FROM plus3it/tardigrade-ci:0.26.0
22

33
COPY ./src/requirements.txt /src/requirements.txt
44

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SHELL := /bin/bash
1+
ONLY_MOTO := true
22

33
include $(shell test -f .tardigrade-ci || curl -sSL -o .tardigrade-ci "https://raw.githubusercontent.com/plus3it/tardigrade-ci/master/bootstrap/Makefile.bootstrap"; echo .tardigrade-ci)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ make mockstack/clean
4545
|------|-------------|------|---------|:--------:|
4646
| <a name="input_hook_url"></a> [hook\_url](#input\_hook\_url) | Slack webhook URL; see <https://api.slack.com/incoming-webhooks> | `string` | n/a | yes |
4747
| <a name="input_dry_run"></a> [dry\_run](#input\_dry\_run) | toggle to control dryrun output of the lambda function | `bool` | `false` | no |
48-
| <a name="input_lambda"></a> [lambda](#input\_lambda) | Object of optional attributes passed on to the lambda module | <pre>object({<br> artifacts_dir = optional(string, "builds")<br> build_in_docker = optional(bool, false)<br> create_package = optional(bool, true)<br> ephemeral_storage_size = optional(number)<br> ignore_source_code_hash = optional(bool, true)<br> local_existing_package = optional(string)<br> memory_size = optional(number, 128)<br> recreate_missing_package = optional(bool, false)<br> runtime = optional(string, "python3.8")<br> s3_bucket = optional(string)<br> s3_existing_package = optional(map(string))<br> s3_prefix = optional(string)<br> store_on_s3 = optional(bool, false)<br> timeout = optional(number, 300)<br> })</pre> | `{}` | no |
48+
| <a name="input_lambda"></a> [lambda](#input\_lambda) | Object of optional attributes passed on to the lambda module | <pre>object({<br/> artifacts_dir = optional(string, "builds")<br/> build_in_docker = optional(bool, false)<br/> create_package = optional(bool, true)<br/> ephemeral_storage_size = optional(number)<br/> ignore_source_code_hash = optional(bool, true)<br/> local_existing_package = optional(string)<br/> memory_size = optional(number, 128)<br/> recreate_missing_package = optional(bool, false)<br/> runtime = optional(string, "python3.12")<br/> s3_bucket = optional(string)<br/> s3_existing_package = optional(map(string))<br/> s3_prefix = optional(string)<br/> store_on_s3 = optional(bool, false)<br/> timeout = optional(number, 300)<br/> })</pre> | `{}` | no |
4949
| <a name="input_log_level"></a> [log\_level](#input\_log\_level) | The log level of the lambda function | `string` | `"INFO"` | no |
5050
| <a name="input_name"></a> [name](#input\_name) | (Optional) Name to associate with the lambda function | `string` | `"codecommit-pr-reminders"` | no |
5151
| <a name="input_schedule"></a> [schedule](#input\_schedule) | (Optional) Schedule expression for CloudWatch event; see <https://docs.aws.amazon.com/lambda/latest/dg/tutorial-scheduled-events-schedule-expressions.html> | `string` | `"cron(0 7 ? * MON-FRI *)"` | no |

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "lambda" {
6-
source = "git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git?ref=v7.7.1"
6+
source = "git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git?ref=v7.17.1"
77

88
function_name = var.name
99
description = "Gather open pull requests and send it to slack"

src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
boto3==1.34.162
1+
boto3==1.35.94
22
requests==2.32.3

0 commit comments

Comments
 (0)