From 2de26fe6a79f8723f50709295ac5b46cc55449d8 Mon Sep 17 00:00:00 2001 From: Paul Boocock Date: Sun, 6 Feb 2022 20:49:00 +0000 Subject: [PATCH] Prepared for release --- CHANGELOG | 6 ++++++ README.md | 4 +++- main.tf | 2 +- variables.tf | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bb12ec1..7aa903a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +Version 0.3.0 (2021-02-09) +-------------------------- +Bump stream-collector to 2.5.0 (#14) +Allow the collector.paths section of the config to be configured (#15) +Update copyright to 2022 (#16) + Version 0.2.2 (2021-12-23) -------------------------- Bump stream-collector to 2.4.5 (#13) diff --git a/README.md b/README.md index 723ce97..baf3d30 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ module "collector_lb" { } ``` + ## Requirements | Name | Version | @@ -113,8 +114,8 @@ module "collector_lb" { | [topic\_project\_id](#input\_topic\_project\_id) | The project ID in which the topics are deployed | `string` | n/a | yes | | [associate\_public\_ip\_address](#input\_associate\_public\_ip\_address) | Whether to assign a public ip address to this instance; if false this instance must be behind a Cloud NAT to connect to the internet | `bool` | `true` | no | | [byte\_limit](#input\_byte\_limit) | The amount of bytes to buffer events before pushing them to PubSub | `number` | `1000000` | no | -| [custom\_paths](#input\_custom\_paths) | Optional custom paths that the collector will respond to, refer to [collector docs](https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/stream-collector/configure/#configuring-custom-paths) for structure | `map(string)` | `{}` | no | | [cookie\_domain](#input\_cookie\_domain) | Optional first party cookie domain for the collector to set cookies on (e.g. acme.com) | `string` | `""` | no | +| [custom\_paths](#input\_custom\_paths) | Optional custom paths that the collector will respond to, typical paths to override are '/com.snowplowanalytics.snowplow/tp2', '/com.snowplowanalytics.iglu/v1' and '/r/tp2'. e.g. { "/custom/path/" : "/com.snowplowanalytics.snowplow/tp2"} | `map(string)` | `{}` | no | | [gcp\_logs\_enabled](#input\_gcp\_logs\_enabled) | Whether application logs should be reported to GCP Logging | `bool` | `true` | no | | [health\_check\_path](#input\_health\_check\_path) | The path to bind for health checks | `string` | `"/health"` | no | | [ingress\_port](#input\_ingress\_port) | The port that the collector will be bound to and expose over HTTP | `number` | `8080` | no | @@ -142,6 +143,7 @@ module "collector_lb" { | [manager\_self\_link](#output\_manager\_self\_link) | The URL for the instance group manager | | [named\_port\_http](#output\_named\_port\_http) | The name of the port exposed by the instance group | | [named\_port\_value](#output\_named\_port\_value) | The named port value (e.g. 8080) | + # Copyright and license diff --git a/main.tf b/main.tf index 82532b4..6c091e2 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { module_name = "collector-pubsub-ce" - module_version = "0.2.2" + module_version = "0.3.0" app_name = "stream-collector" app_version = "2.5.0" diff --git a/variables.tf b/variables.tf index 6d0f865..d5c2ab5 100644 --- a/variables.tf +++ b/variables.tf @@ -106,7 +106,7 @@ variable "bad_topic_name" { } variable "custom_paths" { - description = "Optional custom paths that the collector will respond to" + description = "Optional custom paths that the collector will respond to, typical paths to override are '/com.snowplowanalytics.snowplow/tp2', '/com.snowplowanalytics.iglu/v1' and '/r/tp2'. e.g. { \"/custom/path/\" : \"/com.snowplowanalytics.snowplow/tp2\"}" default = {} type = map(string) }