Skip to content

Commit 666df6e

Browse files
authored
Merge branch 'github-aws-runners:main' into feat-customize-runner-role
2 parents e0fb3e6 + ceb1182 commit 666df6e

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

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

3+
## [6.9.1](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.9.0...v6.9.1) (2025-11-21)
4+
5+
6+
### Bug Fixes
7+
8+
* **lambda:** bump axios from 1.12.2 to 1.13.2 in /lambdas ([#4895](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4895)) ([59e231d](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/59e231d5ffc79639c441d5989bd6a922cdf94948))
9+
* **lambda:** bump js-yaml from 3.14.1 to 3.14.2 in /lambdas ([#4890](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4890)) ([18b8c4e](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/18b8c4eff626ec3d8f5fb340b94336ebec924a42))
10+
* **lambda:** bump the aws group across 1 directory with 7 updates ([#4898](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4898)) ([cf7f4ad](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/cf7f4ad5376dae754f4fc12ada4cc736d1942287))
11+
* use a static key in runner_matcher_config ([#4901](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4901)) ([#4903](https://github.com/github-aws-runners/terraform-aws-github-runner/issues/4903)) ([cc5dc65](https://github.com/github-aws-runners/terraform-aws-github-runner/commit/cc5dc657310fb341b2737138713517837600f153))
12+
313
## [6.9.0](https://github.com/github-aws-runners/terraform-aws-github-runner/compare/v6.8.5...v6.9.0) (2025-11-13)
414

515

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ module "webhook" {
108108
eventbridge = var.eventbridge
109109

110110
runner_matcher_config = {
111-
(aws_sqs_queue.queued_builds.id) = {
111+
"${var.prefix}-queued-builds" = {
112112
id : aws_sqs_queue.queued_builds.id
113113
arn : aws_sqs_queue.queued_builds.arn
114114
matcherConfig : {

modules/multi-runner/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ module "multi-runner" {
171171
| <a name="input_runners_ssm_housekeeper"></a> [runners\_ssm\_housekeeper](#input\_runners\_ssm\_housekeeper) | Configuration for the SSM housekeeper lambda. This lambda deletes token / JIT config from SSM.<br/><br/> `schedule_expression`: is used to configure the schedule for the lambda.<br/> `enabled`: enable or disable the lambda trigger via the EventBridge.<br/> `lambda_memory_size`: lambda memory size limit.<br/> `lambda_timeout`: timeout for the lambda in seconds.<br/> `config`: configuration for the lambda function. Token path will be read by default from the module. | <pre>object({<br/> schedule_expression = optional(string, "rate(1 day)")<br/> enabled = optional(bool, true)<br/> lambda_memory_size = optional(number, 512)<br/> lambda_timeout = optional(number, 60)<br/> config = object({<br/> tokenPath = optional(string)<br/> minimumDaysOld = optional(number, 1)<br/> dryRun = optional(bool, false)<br/> })<br/> })</pre> | <pre>{<br/> "config": {}<br/>}</pre> | no |
172172
| <a name="input_scale_down_lambda_memory_size"></a> [scale\_down\_lambda\_memory\_size](#input\_scale\_down\_lambda\_memory\_size) | Memory size limit in MB for scale down. | `number` | `512` | no |
173173
| <a name="input_scale_up_lambda_memory_size"></a> [scale\_up\_lambda\_memory\_size](#input\_scale\_up\_lambda\_memory\_size) | Memory size limit in MB for scale\_up lambda. | `number` | `512` | no |
174-
| <a name="input_ssm_paths"></a> [ssm\_paths](#input\_ssm\_paths) | The root path used in SSM to store configuration and secreets. | <pre>object({<br/> root = optional(string, "github-action-runners")<br/> app = optional(string, "app")<br/> runners = optional(string, "runners")<br/> webhook = optional(string, "webhook")<br/> })</pre> | `{}` | no |
174+
| <a name="input_ssm_paths"></a> [ssm\_paths](#input\_ssm\_paths) | The root path used in SSM to store configuration and secrets. | <pre>object({<br/> root = optional(string, "github-action-runners")<br/> app = optional(string, "app")<br/> runners = optional(string, "runners")<br/> webhook = optional(string, "webhook")<br/> })</pre> | `{}` | no |
175175
| <a name="input_state_event_rule_binaries_syncer"></a> [state\_event\_rule\_binaries\_syncer](#input\_state\_event\_rule\_binaries\_syncer) | Option to disable EventBridge Lambda trigger for the binary syncer, useful to stop automatic updates of binary distribution | `string` | `"ENABLED"` | no |
176176
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | List of subnets in which the action runners will be launched, the subnets needs to be subnets in the `vpc_id`. | `list(string)` | n/a | yes |
177177
| <a name="input_syncer_lambda_s3_key"></a> [syncer\_lambda\_s3\_key](#input\_syncer\_lambda\_s3\_key) | S3 key for syncer lambda function. Required if using S3 bucket to specify lambdas. | `string` | `null` | no |

0 commit comments

Comments
 (0)