Skip to content

Commit

Permalink
Merge branch 'release/v0.9.0' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Jan 21, 2021
2 parents 58e145d + 0ba8946 commit c5f7442
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0] - 2020-12-08
## [0.9.0] - 2021-01-21

### Added

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

### Mirgrations
### Migrations

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

Expand Down Expand Up @@ -141,8 +141,8 @@ terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook

[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.9.0..HEAD
[0.9.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.8.1..v0.9.0
[0.8.1]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.8.0..v0.8.1
[0.8.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.7.0..v0.8.0
[0.8.1]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.9.0..v0.8.1
[0.8.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.7.0..v0.9.0
[0.7.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.6.0..v0.7.0
[0.6.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.5.0..v0.6.0
[0.5.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.4.0..v0.5.0
Expand Down
6 changes: 3 additions & 3 deletions examples/default/lambdas-download/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runners"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.8.0"
tag = "v0.9.0"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions examples/permissions-boundary/lambdas-download/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runners"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.8.0"
tag = "v0.9.0"
}
]
}
Expand Down
22 changes: 11 additions & 11 deletions modules/download-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runners"
tag = "v0.8.0"
tag = "v0.9.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.8.0"
tag = "v0.9.0"
}
]
}
Expand All @@ -32,20 +32,20 @@ No requirements.
## Providers

| Name | Version |
|------|---------|
| null | n/a |
| ---- | ------- |
| null | n/a |

## Inputs

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

## Outputs

| Name | Description |
|------|-------------|
| files | n/a |
| Name | Description |
| ----- | ----------- |
| files | n/a |

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

Expand Down

0 comments on commit c5f7442

Please sign in to comment.