Skip to content

Releases: github-aws-runners/terraform-aws-github-runner

v5.18.1

30 Oct 07:04
0c52580
Compare
Choose a tag to compare

5.18.1 (2024-10-29)

Bug Fixes

  • lambda: bump the aws group in /lambdas with 7 updates (#4211) (d18dcaa)
  • lambda: bump the aws-powertools group in /lambdas with 4 updates (#4212) (9c9219b)
  • webhook: grant KMS permission to decrypt when using EventBridge (#4220) (380bcaf)
  • webhook: result message webhook (#4221) (8099c17)

v5.18.0

28 Oct 17:02
7983143
Compare
Choose a tag to compare

5.18.0 (2024-10-28)

Features

Migration directions

This release is adding optional the EventBridge as option to the webhook. No matter if the feature is enabled or not resources are moved internally. Which will destroy all webhook related resources update to this verions.

To retain data for the Loggroup of the webhook or mmetrics for the webhook the resources not to be moved in the Terraform state. You can add HCL moved blocked to your deployment to instruct Terraform to move the resources instead of re-create.

Examples Terraform `moved` blockes

With module defaults or eventbridge is not eanavbled

# log group
moved {
   from = module.<runner-module-name>.module.webhook.aws_cloudwatch_log_group.webhook
   to = module.<runner-module-name>.module.webhook.module.direct[0].aws_cloudwatch_log_group.webhook
}

# lambda
moved {
   from = module.<runner-module-name>.module.webhook.aws_lambda_function.webhook
   to = module.<runner-module-name>.module.webhook.module.direct[0].aws_lambda_function.webhook
}

With EventBridge enabled

# log group
moved {
   from = module.<runner-module-name>.module.webhook.aws_cloudwatch_log_group.webhook
   to = module.<runner-module-name>.module.webhook.module.direct[0].aws_cloudwatch_log_group.webhook
}

# lambda
moved {
   from = module.<runner-module-name>.module.webhook.aws_lambda_function.webhook
   to = module.<runner-module-name>.module.webhook.module.direct[0].aws_lambda_function.webhook
}

Ater upgrade swithcing between webhook to EventBridge

When enable mode eventbridge

# log group
moved {
  from = module.runners.module.webhook.module.direct[0].aws_cloudwatch_log_group.webhook
  to = module.runners.module.webhook.module.eventbridge[0].aws_cloudwatch_log_group.webhook
}

# lambda
moved {
  from = module.runners.module.webhook.module.direct[0].aws_lambda_function.webhook
  to = module.runners.module.webhook.module.eventbridge[0].aws_lambda_function.webhook
}

Or vice versa for moving from eventbride to webhook

v5.17.3

23 Oct 14:35
3495d80
Compare
Choose a tag to compare

5.17.3 (2024-10-23)

Bug Fixes

  • lambda: bump the aws group across 1 directory with 5 updates (#4203) (e12ee80)
  • lambda: bump typescript from 5.5.4 to 5.6.3 in /lambdas (#4200) (cb0c1ff)

v5.17.2

21 Oct 14:27
3b9bba2
Compare
Choose a tag to compare

5.17.2 (2024-10-21)

Bug Fixes

  • spot termination watcher output multi runner (#4194) (367b1b3)

v5.17.1

17 Oct 07:42
4708125
Compare
Choose a tag to compare

5.17.1 (2024-10-17)

Bug Fixes

  • lambda: bump @octokit/types from 13.5.0 to 13.6.1 in /lambdas in the octokit group (#4183) (f24469f)
  • lambda: bump the aws group across 1 directory with 5 updates (#4191) (bf8a924)
  • lambda: bump the aws-powertools group in /lambdas with 4 updates (#4184) (e18ac60)

v5.17.0

10 Oct 09:17
6e6c08e
Compare
Choose a tag to compare

5.17.0 (2024-10-10)

Features

v5.16.4

10 Oct 07:59
3fb1729
Compare
Choose a tag to compare

5.16.4 (2024-10-10)

Bug Fixes

v5.16.3

09 Oct 09:45
88665e2
Compare
Choose a tag to compare

5.16.3 (2024-10-09)

Bug Fixes

  • lambda: bump the aws group across 1 directory with 6 updates (#4172) (71f4b6e)
  • lambda: bump the octokit group in /lambdas with 2 updates (#4166) (5573c39)
  • support ephemeral runners for windows (#4164) (44f5d6d)

v5.16.2

04 Oct 13:47
0dff507
Compare
Choose a tag to compare

5.16.2 (2024-10-04)

Bug Fixes

  • lambda: bump @octokit/types from 13.5.0 to 13.6.0 in /lambdas in the octokit group (#4154) (825b465)
  • lambda: bump axios from 1.7.5 to 1.7.7 in /lambdas (#4155) (82a19c1)
  • lambda: bump the aws group across 1 directory with 6 updates (#4159) (fb67693)
  • lambda: bump the aws group in /lambdas with 6 updates (#4146) (43bf911)

v5.16.1

21 Sep 01:56
c2a7d40
Compare
Choose a tag to compare

5.16.1 (2024-09-21)

Bug Fixes

  • Add missing SG and subnet configuration for Job Retry lambda (#4114) (7095487)
  • lambda: bump @aws-sdk/client-ec2 from 3.637.0 to 3.641.0 in /lambdas in the aws group (#4106) (20f51a1)
  • lambda: bump @octokit/auth-app from 6.1.1 to 6.1.2 in /lambdas in the octokit group (#4117) (6e6bd98)
  • lambda: bump the aws group in /lambdas with 5 updates (#4116) (4a8826b)
  • lambda: bump the aws group in /lambdas with 6 updates (#4128) (f6164e7)
  • lambda: bump the aws-powertools group in /lambdas with 4 updates (#4129) (ab2605f)