From 8080a39e0a083e8f0ff9e25b371847928ede300d Mon Sep 17 00:00:00 2001 From: jbeemster Date: Fri, 3 Jan 2025 14:05:04 +0100 Subject: [PATCH] Prepared for release --- CHANGELOG | 5 +++++ README.md | 4 ++-- main.tf | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1a0afe9..a447876 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +Version 0.10.0 (2025-01-03) +--------------------------- +Update to SLULA v1.1 +Bump app_version to v3.3.0 + Version 0.9.1 (2024-04-03) -------------------------- Add support for AWS China regions (#51) diff --git a/README.md b/README.md index 1ecc059..854fa89 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ module "collector_kinesis" { | [vpc\_id](#input\_vpc\_id) | The VPC to deploy the collector within | `string` | n/a | yes | | [accept\_limited\_use\_license](#input\_accept\_limited\_use\_license) | Acceptance of the SLULA terms (https://docs.snowplow.io/limited-use-license-1.0/) | `bool` | `false` | no | | [amazon\_linux\_2\_ami\_id](#input\_amazon\_linux\_2\_ami\_id) | The AMI ID to use which must be based of of Amazon Linux 2; by default the latest community version is used | `string` | `""` | no | -| [app\_version](#input\_app\_version) | App version to use. This variable facilitates dev flow, the modules may not work with anything other than the default value. | `string` | `"3.0.1"` | no | +| [app\_version](#input\_app\_version) | App version to use. This variable facilitates dev flow, the modules may not work with anything other than the default value. | `string` | `"3.3.0"` | no | | [associate\_public\_ip\_address](#input\_associate\_public\_ip\_address) | Whether to assign a public ip address to this instance | `bool` | `true` | no | | [bad\_sqs\_buffer\_name](#input\_bad\_sqs\_buffer\_name) | The name of the bad sqs queue to use as an overflow buffer for kinesis | `string` | `""` | no | | [byte\_limit](#input\_byte\_limit) | The amount of bytes to buffer events before pushing them downstream | `number` | `1000000` | no | @@ -148,7 +148,7 @@ module "collector_kinesis" { | [scale\_up\_cpu\_threshold\_percentage](#input\_scale\_up\_cpu\_threshold\_percentage) | The average CPU percentage that must be exceeded to scale-up | `number` | `60` | no | | [scale\_up\_eval\_minutes](#input\_scale\_up\_eval\_minutes) | The number of consecutive minutes that the threshold must be breached to scale-up | `number` | `5` | no | | [sink\_type](#input\_sink\_type) | The stream technology to push messages into (either 'kinesis' or 'sqs') | `string` | `"kinesis"` | no | -| [ssh\_ip\_allowlist](#input\_ssh\_ip\_allowlist) | The list of CIDR ranges to allow SSH traffic from | `list(any)` |
[
"0.0.0.0/0"
]
| no | +| [ssh\_ip\_allowlist](#input\_ssh\_ip\_allowlist) | The list of CIDR ranges to allow SSH traffic from | `list(any)` |
[
"0.0.0.0/0"
]
| no | | [tags](#input\_tags) | The tags to append to this resource | `map(string)` | `{}` | no | | [telemetry\_enabled](#input\_telemetry\_enabled) | Whether or not to send telemetry information back to Snowplow Analytics Ltd | `bool` | `true` | no | | [time\_limit\_ms](#input\_time\_limit\_ms) | The amount of time to buffer events before pushing them downstream | `number` | `500` | no | diff --git a/main.tf b/main.tf index ca078eb..2e33480 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { module_name = "collector-${var.sink_type}-ec2" - module_version = "0.9.1" + module_version = "0.10.0" app_name = "stream-collector" app_version = var.app_version