0.16.0 (2021-08-05)
- make delay of webhook event configurable (#990) (92a0d8a)
- Store lambda secrets paramaters in Paramater Store (#941) (c6badbf), closes #871 #898 #738 #902 #738 #905 #906 #904 #1 #752 #909 #752 #908 #752 #887 #752 #885 #752 #889 #752 #892 #752 #907 #752 #864 #918
- change module exports and upgrade vercel to latest release (#1005) (f8f8981)
- reduce permission required for session manager (#1018) (09476eb)
0.15.1 (2021-07-13)
0.15.0 (2021-07-07)
0.14.0 (2021-06-17)
0.13.1 (2021-06-01)
- .gitignore for 'secrets.auto.tfvars' (38d7df0)
- Add some essential dependecies on ubuntu example (0079d16)
- fail to download wrong tag of lambda (#840) (1112ca8)
- increase runner sync lambda memory setting and upgrade npm dependencies (#844) (b9e36e9)
- revert dependency updates on runner module (#784) (76cdbe3)
- ubuntu example runner_log_files variable (5b3fc5b)
- ubuntu example to log syslog instead of messages (#785) (fb3e5d2)
- Update ubuntu example with assume_role comment (2478daf)
- upgrade runner module to support upgrade octokit auth-app (#786) (e110318)
- docs: fix variable name create_service_linked_role_spot in readme (#750) (42b0427), closes #736
0.13.0 (2021-03-28)
0.12.0 (2021-03-09)
0.11.0 - 2021-03-01
- feat: Tag Volume Resources (#570)
- feat: Retrieve installation id automatically if not present (triggered by ordinary webhook) (#515)
- fix(bucket): Adds bucket policy #536
- fix: Upgrade vpc to 2.2.0 and pre-commit terraform hooks (#538)
- fix(lint): Clean up lint (#534)
0.10.0 - 2021-01-27
- Support runner groups (#496)
0.9.1 - 2021-01-22
- fix(ghes): Corrects preview option #482 @mcaulifn @samuelb
0.9.0 - 2021-01-21
- Add support for GitHub Enterprise Server (GHES) #412, #481, #467 @mcaulifn @jonico
- Allow configuring additional security groups #392 @surminus
- Log groups per type of logging #476
- Copy directory after installing zip #444 @masterful
- Update ubuntu example with rootless docker and non privileged user #433
- Changed strategy in scaling. Previous the module scaled by checking for any queued workflow for the repo initiation the check_run event. Now the module scales only if the correlated check_run is still in queued state. #423
- Fix missing permissions for CloudWatch Agent #445 @bennettp123
- Swap scale up/scale down timeout description #468 @jonico
- Fix for invalid configuration #466 @jonico
- Add ssm:GetParameter to runner-ssm-parameters #446 @bennettp123
- Replace crypto #429
- Scale up lambda deprecated attribute #410
Changes related to logging groups introduced via #476 will destroy existing logging group in AWS cloudwatch for runners log. In case you would like to keep the logging ensure you remove the log group from the state before running an apply
export RESOURCE=$(terraform state list | grep "aws_cloudwatch_log_group.runner")
terraform state rm $RESOURCE
0.8.1 - 2020-12-08
- Policy is missing for streaming logs to cloudwatch #388
0.8.0 - 2020-12-08
- Examples upgraded to Terraform 13 (#372)
- Streaming runner logs to cloudwatch #375
0.7.0 - 2020-12-04
- Small clarifications in the README #368 @lrytz
- Allow operator to pass in a list of managed IAM policy ARNs for the runner role #361 @jpalomaki
- expand options for sourcing lambda to include S3 #292 @eky5006
0.6.0 - 2020-10-10
- Only allow tagging and termination of runner instances #201 @jpalomaki
- Fix pagination with listing self-hosted runners #202 @HenryNguyen5
0.5.0 - 2020-08-25
- feat: Manage log groups via module. When upgrading you have to import the log groups by AWS into your state. See below the example commands for the default example.
terraform import module.runners.module.runner_binaries.aws_cloudwatch_log_group.syncer "/aws/lambda/default-syncer"
terraform import module.runners.module.runners.aws_cloudwatch_log_group.scale_up "/aws/lambda/default-scale-up"
terraform import module.runners.module.runners.aws_cloudwatch_log_group.scale_down "/aws/lambda/default-scale-down"
terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook "/aws/lambda/default-webhook"
-
feat: Expose ami-filters and user-data template file location to users to allow use of custom AMIs
-
feat: Added option to binaries syncer to upgrade to pre-releases, preventing any auto-updating on startup. Option
runner_allow_prerelease_binaries
is disabled by default. (#141, #165) @sjagoe -
feat: SSM policies are by default disabled, set
enable_ssm_on_runners
totrue
to enable access to the runner instances via SSM. (#143) @HenryNguyen5 -
feat: Log full sqs event (#147) @HenryNguyen5
0.4.0 - 2020-08-10
- feat: idle runners #113
0.3.0 - 2020-08-06
- feat: Add support for ARM64 runners #102 @bdruth
- feat: added variables in the root module to allow passing in pre and and post install #45 @jaydenrasmussen
- fix: Build script not entering all the module directories (#103) @alonsohki
- fix: Remove Orphan AWS runners (#79)
- fix: documentation for downloading lambdas (#78) @@bendavies
- fix: Rename variable and fix variables descriptions (#75) @bendavies @leoblanc
0.2.0 - 2020-06-15
- #34 encrypt secrets via KMS (#37)
0.1.0 - 2020-05-25
- #30 - Add parameter to terraform to set max number of runners (#31)
- #17 - adding tests for syncer (#33)
- #20 #21 - Improve docs, add readme, add hook generate terraform docs
0.0.1 - 2020-05-19
- First release.