Releases: github-aws-runners/terraform-aws-github-runner
Releases · github-aws-runners/terraform-aws-github-runner
v5.18.1
5.18.1 (2024-10-29)
Bug Fixes
v5.18.0
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
v5.17.2
v5.17.1
v5.17.0
v5.16.4
v5.16.3
v5.16.2
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
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)