Skip to content

Commit 03e10f1

Browse files
authored
Merge branch 'main' into main
2 parents a517b05 + 6345ec2 commit 03e10f1

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [6.1.3](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.1.2...v6.1.3) (2025-01-21)
4+
5+
6+
### Bug Fixes
7+
8+
* **lambda:** bump @octokit/types from 13.6.2 to 13.7.0 in /lambdas in the octokit group ([#4370](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4370)) ([cc0f873](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/cc0f8730f61be99cf66871c6b70842a562b984f7))
9+
* **lambda:** bump the aws group in /lambdas with 7 updates ([#4369](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4369)) ([2223525](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/222352514651af52157962d85edc82186eebdfb8))
10+
* **lambda:** bump the aws-powertools group in /lambdas with 4 updates ([#4371](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4371)) ([9f17371](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/9f1737145387056910e85120c6c65a3eed487028))
11+
312
## [6.1.2](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.1.1...v6.1.2) (2025-01-13)
413

514

examples/multi-runner/templates/runner-configs/linux-arm64.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ runner_config:
1919
delay_webhook_event: 0
2020
scale_down_schedule_expression: cron(* * * * ? *)
2121
runner_hook_job_started: |
22-
echo "Running pre job hook as \$(whoami)"
22+
echo "Running pre job hook as $(whoami)"
2323
runner_hook_job_completed: |
24-
echo "Running post job hook as \$(whoami)"
24+
echo "Running post job hook as $(whoami)"

modules/termination-watcher/notification/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module "termination_warning_watcher" {
1919
resource "aws_cloudwatch_event_rule" "spot_instance_termination_warning" {
2020
name = "${var.config.prefix != null ? format("%s-", var.config.prefix) : ""}spot-notify"
2121
description = "Spot Instance Termination Warning"
22+
tags = local.config.tags
2223

2324
event_pattern = <<EOF
2425
{

modules/termination-watcher/termination/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module "termination_handler" {
1919
resource "aws_cloudwatch_event_rule" "spot_instance_termination" {
2020
name = "${var.config.prefix != null ? format("%s-", var.config.prefix) : ""}spot-termination"
2121
description = "Spot Instance Termination (BidEventicedEvent)"
22+
tags = local.config.tags
2223

2324
event_pattern = <<EOF
2425
{

modules/webhook/eventbridge/dispatcher.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
resource "aws_cloudwatch_event_rule" "workflow_job" {
22
name = "${var.config.prefix}-workflow_job"
3-
description = "Workflow job event ruule for job queued."
3+
description = "Workflow job event rule for job queued."
44
event_bus_name = aws_cloudwatch_event_bus.main.name
5+
tags = var.config.tags
56

67
event_pattern = <<EOF
78
{

0 commit comments

Comments
 (0)