Skip to content

Commit c5f7442

Browse files
committed
Merge branch 'release/v0.9.0' into master
2 parents 58e145d + 0ba8946 commit c5f7442

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.9.0] - 2020-12-08
10+
## [0.9.0] - 2021-01-21
1111

1212
### Added
1313

@@ -30,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030
- Replace crypto #429
3131
- Scale up lambda deprecated attribute #410
3232

33-
### Mirgrations
33+
### Migrations
3434

3535
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
3636

@@ -141,8 +141,8 @@ terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook
141141

142142
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.9.0..HEAD
143143
[0.9.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.8.1..v0.9.0
144-
[0.8.1]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.8.0..v0.8.1
145-
[0.8.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.7.0..v0.8.0
144+
[0.8.1]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.9.0..v0.8.1
145+
[0.8.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.7.0..v0.9.0
146146
[0.7.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.6.0..v0.7.0
147147
[0.6.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.5.0..v0.6.0
148148
[0.5.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.4.0..v0.5.0

examples/default/lambdas-download/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ module "lambdas" {
33
lambdas = [
44
{
55
name = "webhook"
6-
tag = "v0.8.0"
6+
tag = "v0.9.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.8.0"
10+
tag = "v0.9.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.8.0"
14+
tag = "v0.9.0"
1515
}
1616
]
1717
}

examples/permissions-boundary/lambdas-download/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ module "lambdas" {
33
lambdas = [
44
{
55
name = "webhook"
6-
tag = "v0.8.0"
6+
tag = "v0.9.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.8.0"
10+
tag = "v0.9.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.8.0"
14+
tag = "v0.9.0"
1515
}
1616
]
1717
}

modules/download-lambda/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ module "lambdas" {
1010
lambdas = [
1111
{
1212
name = "webhook"
13-
tag = "v0.8.0"
13+
tag = "v0.9.0"
1414
},
1515
{
1616
name = "runners"
17-
tag = "v0.8.0"
17+
tag = "v0.9.0"
1818
},
1919
{
2020
name = "runner-binaries-syncer"
21-
tag = "v0.8.0"
21+
tag = "v0.9.0"
2222
}
2323
]
2424
}
@@ -32,20 +32,20 @@ No requirements.
3232
## Providers
3333

3434
| Name | Version |
35-
|------|---------|
36-
| null | n/a |
35+
| ---- | ------- |
36+
| null | n/a |
3737

3838
## Inputs
3939

40-
| Name | Description | Type | Default | Required |
41-
|------|-------------|------|---------|:--------:|
42-
| lambdas | Name and tag for lambdas to download. | <pre>list(object({<br> name = string<br> tag = string<br> }))</pre> | n/a | yes |
40+
| Name | Description | Type | Default | Required |
41+
| ------- | ------------------------------------- | --------------------------------------------------------------------------- | ------- | :------: |
42+
| lambdas | Name and tag for lambdas to download. | <pre>list(object({<br> name = string<br> tag = string<br> }))</pre> | n/a | yes |
4343

4444
## Outputs
4545

46-
| Name | Description |
47-
|------|-------------|
48-
| files | n/a |
46+
| Name | Description |
47+
| ----- | ----------- |
48+
| files | n/a |
4949

5050
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
5151

0 commit comments

Comments
 (0)