From 9ab22cefa932e35472bcef4916eca0de13b5aa24 Mon Sep 17 00:00:00 2001 From: jakthom Date: Wed, 3 May 2023 13:41:24 -0400 Subject: [PATCH 1/3] gcp deploy --- deploy/terraform/aws/lambda/variables.tf | 2 +- deploy/terraform/gcp/cloud_run/main.tf | 12 +++++------ deploy/terraform/gcp/cloud_run/schema.json | 22 +++++++++++++++++++++ deploy/terraform/gcp/cloud_run/variables.tf | 4 ++-- 4 files changed, 31 insertions(+), 9 deletions(-) create mode 100644 deploy/terraform/gcp/cloud_run/schema.json diff --git a/deploy/terraform/aws/lambda/variables.tf b/deploy/terraform/aws/lambda/variables.tf index 3df978e0..35a2eca3 100644 --- a/deploy/terraform/aws/lambda/variables.tf +++ b/deploy/terraform/aws/lambda/variables.tf @@ -29,7 +29,7 @@ variable "buz_domain" { variable "buz_version" { description = "The version of Buz to run." type = string - default = "v0.16.3" + default = "v0.16.4" } variable "buz_lambda_memory_limit" { diff --git a/deploy/terraform/gcp/cloud_run/main.tf b/deploy/terraform/gcp/cloud_run/main.tf index a420cd45..ad14c8c9 100644 --- a/deploy/terraform/gcp/cloud_run/main.tf +++ b/deploy/terraform/gcp/cloud_run/main.tf @@ -3,12 +3,12 @@ data "google_project" "project" {} // NOTE // Uncomment this if you want to store tfstate in a // pre-existing GCS bucket -# terraform { -# backend "gcs" { -# bucket = "YOUR_TFSTATE_BUCKET" -# prefix = "YOUR_TFSTATE_PREFIX" -# } -# } +# terraform { +# backend "gcs" { +# bucket = "YOUR_TFSTATE_BUCKET" +# prefix = "YOUR_TFSTATE_PREFIX" +# } +# } module "template_files" { source = "hashicorp/dir/template" diff --git a/deploy/terraform/gcp/cloud_run/schema.json b/deploy/terraform/gcp/cloud_run/schema.json new file mode 100644 index 00000000..1145191c --- /dev/null +++ b/deploy/terraform/gcp/cloud_run/schema.json @@ -0,0 +1,22 @@ +[ + { + "name": "data", + "type": "STRING" + }, + { + "name": "subscription_name", + "type": "STRING" + }, + { + "name": "publish_time", + "type": "TIMESTAMP" + }, + { + "name": "message_id", + "type": "STRING" + }, + { + "name": "attributes", + "type": "STRING" + } +] \ No newline at end of file diff --git a/deploy/terraform/gcp/cloud_run/variables.tf b/deploy/terraform/gcp/cloud_run/variables.tf index 025c355e..9ff93c2f 100644 --- a/deploy/terraform/gcp/cloud_run/variables.tf +++ b/deploy/terraform/gcp/cloud_run/variables.tf @@ -87,11 +87,11 @@ variable "bigquery_dataset_name" { variable "default_bigquery_table" { description = "The name of the default BigQuery table" type = string - default = "invalid_events" + default = "events" } variable "deadletter_bigquery_table" { description = "The name of the deadletter BigQuery table" type = string - default = "events" + default = "invalid_events" } From 5686010fd94d36cabb5d31b393d028f01d864aa9 Mon Sep 17 00:00:00 2001 From: jakthom Date: Wed, 3 May 2023 13:55:58 -0400 Subject: [PATCH 2/3] use gh user content not r.buz because it makes me sweat --- schemas/com.github/hook/repository/v1.0.json | 2 +- schemas/com.stripe/hook/v1.0.json | 2 +- schemas/io.silverton/amplitude/event/v1.0.json | 2 +- schemas/io.silverton/buz/example/generic/sample/v1.0.json | 2 +- schemas/io.silverton/buz/example/gettingStarted/v1.0.json | 2 +- schemas/io.silverton/buz/example/productView/v1.0.json | 2 +- schemas/io.silverton/buz/hook/arbitrary/v1.0.json | 2 +- schemas/io.silverton/buz/internal/config/app/v1.0.json | 4 ++-- .../io.silverton/buz/internal/contexts/httpHeaders/v1.0.json | 2 +- schemas/io.silverton/buz/internal/envelope/v1.0.json | 2 +- schemas/io.silverton/buz/internal/meta/v1.0.json | 2 +- schemas/io.silverton/buz/internal/tele/beat/v1.0.json | 2 +- schemas/io.silverton/buz/internal/tele/meta/v1.0.json | 2 +- schemas/io.silverton/buz/internal/tele/shutdown/v1.0.json | 2 +- schemas/io.silverton/buz/internal/tele/startup/v1.0.json | 2 +- schemas/io.silverton/buz/pixel/arbitrary/v1.0.json | 2 +- schemas/io.silverton/buz/pixel/linkClick/v1.0.json | 2 +- schemas/io.silverton/buz/pixel/pageView/v1.0.json | 2 +- schemas/io.silverton/segment/common/v1.0.json | 2 +- schemas/io.silverton/snowplow/page_ping/v1.0.json | 2 +- schemas/io.silverton/snowplow/page_view/v1.0.json | 2 +- schemas/io.silverton/snowplow/payload_data/v1.4.json | 2 +- schemas/io.silverton/snowplow/struct/v1.0.json | 2 +- schemas/io.silverton/snowplow/transaction/v1.0.json | 2 +- schemas/io.silverton/snowplow/transaction_item/v1.0.json | 2 +- 25 files changed, 26 insertions(+), 26 deletions(-) diff --git a/schemas/com.github/hook/repository/v1.0.json b/schemas/com.github/hook/repository/v1.0.json index d07c79d8..894b9c00 100644 --- a/schemas/com.github/hook/repository/v1.0.json +++ b/schemas/com.github/hook/repository/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "com.github/hook/repository/v1.0.json", "title": "com.github/hook/repository/v1.0.json", "description": "Wrapper for repository-level Github hooks", diff --git a/schemas/com.stripe/hook/v1.0.json b/schemas/com.stripe/hook/v1.0.json index 0fa24064..609f6156 100644 --- a/schemas/com.stripe/hook/v1.0.json +++ b/schemas/com.stripe/hook/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "com.stripe/hook/v1.0.json", "title": "com.stripe/hook/v1.0.json", "description": "Wrapper for Stripe hooks", diff --git a/schemas/io.silverton/amplitude/event/v1.0.json b/schemas/io.silverton/amplitude/event/v1.0.json index 345835fc..3a33bfa1 100644 --- a/schemas/io.silverton/amplitude/event/v1.0.json +++ b/schemas/io.silverton/amplitude/event/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/amplitude/event/v1.0.json", "title": "io.silverton/amplitude/event/v1.0.json", "description": "Amplitude event spec", diff --git a/schemas/io.silverton/buz/example/generic/sample/v1.0.json b/schemas/io.silverton/buz/example/generic/sample/v1.0.json index 526c12d0..e4beea3d 100644 --- a/schemas/io.silverton/buz/example/generic/sample/v1.0.json +++ b/schemas/io.silverton/buz/example/generic/sample/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/example/generic/sample/v1.0.json", "title": "io.silverton/buz/example/generic/sample/v1.0.json", "description": "Schema for testing generic events", diff --git a/schemas/io.silverton/buz/example/gettingStarted/v1.0.json b/schemas/io.silverton/buz/example/gettingStarted/v1.0.json index 5dc4b3e3..4162ddb6 100644 --- a/schemas/io.silverton/buz/example/gettingStarted/v1.0.json +++ b/schemas/io.silverton/buz/example/gettingStarted/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/example/gettingStarted/v1.0.json", "title": "io.silverton/buz/example/gettingStarted/v1.0.json", "description": "A getting started event used to bootstrap and demonstrate validation", diff --git a/schemas/io.silverton/buz/example/productView/v1.0.json b/schemas/io.silverton/buz/example/productView/v1.0.json index 22fe91f1..5ccdf580 100644 --- a/schemas/io.silverton/buz/example/productView/v1.0.json +++ b/schemas/io.silverton/buz/example/productView/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/example/productView/v1.0.json", "title": "io.silverton/buz/example/productView/v1.0.json", "description": "Schema for product views", diff --git a/schemas/io.silverton/buz/hook/arbitrary/v1.0.json b/schemas/io.silverton/buz/hook/arbitrary/v1.0.json index 21f1c3ee..a63efbd9 100644 --- a/schemas/io.silverton/buz/hook/arbitrary/v1.0.json +++ b/schemas/io.silverton/buz/hook/arbitrary/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/hook/arbitrary/v1.0.json", "title": "io.silverton/buz/hook/arbitrary/v1.0.json", "description": "A catchall schema for unnamed events consisting of arbitrary webhook payloads.", diff --git a/schemas/io.silverton/buz/internal/config/app/v1.0.json b/schemas/io.silverton/buz/internal/config/app/v1.0.json index 6bb2a4aa..98c1945d 100644 --- a/schemas/io.silverton/buz/internal/config/app/v1.0.json +++ b/schemas/io.silverton/buz/internal/config/app/v1.0.json @@ -1,6 +1,6 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", - "$id": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", + "$id": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "title": "io.silverton/buz/internal/config/app/v1.0.json", "description": "Application configuration", "owner": { diff --git a/schemas/io.silverton/buz/internal/contexts/httpHeaders/v1.0.json b/schemas/io.silverton/buz/internal/contexts/httpHeaders/v1.0.json index c07683ef..1450195b 100644 --- a/schemas/io.silverton/buz/internal/contexts/httpHeaders/v1.0.json +++ b/schemas/io.silverton/buz/internal/contexts/httpHeaders/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/internal/contexts/httpHeaders/v1.0.json", "title": "io.silverton/buz/internal/contexts/httpHeaders/v1.0.json", "description": "HTTP headers context", diff --git a/schemas/io.silverton/buz/internal/envelope/v1.0.json b/schemas/io.silverton/buz/internal/envelope/v1.0.json index b0034eae..6292f321 100644 --- a/schemas/io.silverton/buz/internal/envelope/v1.0.json +++ b/schemas/io.silverton/buz/internal/envelope/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/envelope/v1.0.json", "title": "io.silverton/buz/envelope/v1.0.json", "description": "Buz envelope", diff --git a/schemas/io.silverton/buz/internal/meta/v1.0.json b/schemas/io.silverton/buz/internal/meta/v1.0.json index 7d91dcd4..f145d430 100644 --- a/schemas/io.silverton/buz/internal/meta/v1.0.json +++ b/schemas/io.silverton/buz/internal/meta/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/internal/meta/v1.0.json", "description": "The Buz Metaschema", "self": { diff --git a/schemas/io.silverton/buz/internal/tele/beat/v1.0.json b/schemas/io.silverton/buz/internal/tele/beat/v1.0.json index 539ab6f6..cf4158c5 100644 --- a/schemas/io.silverton/buz/internal/tele/beat/v1.0.json +++ b/schemas/io.silverton/buz/internal/tele/beat/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/tele/beat/v1.0.json", "title": "io.silverton/buz/tele/beat/v1.0.json", "description": "Buz heartbeat event", diff --git a/schemas/io.silverton/buz/internal/tele/meta/v1.0.json b/schemas/io.silverton/buz/internal/tele/meta/v1.0.json index 693093f3..f2041e88 100644 --- a/schemas/io.silverton/buz/internal/tele/meta/v1.0.json +++ b/schemas/io.silverton/buz/internal/tele/meta/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/tele/meta/v1.0.json", "title": "io.silverton/buz/tele/meta/v1.0.json", "owner": { diff --git a/schemas/io.silverton/buz/internal/tele/shutdown/v1.0.json b/schemas/io.silverton/buz/internal/tele/shutdown/v1.0.json index 57dc2896..650d5019 100644 --- a/schemas/io.silverton/buz/internal/tele/shutdown/v1.0.json +++ b/schemas/io.silverton/buz/internal/tele/shutdown/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/tele/shutdown/v1.0.json", "title": "io.silverton/buz/tele/shutdown/v1.0.json", "description": "Buz shutdown event", diff --git a/schemas/io.silverton/buz/internal/tele/startup/v1.0.json b/schemas/io.silverton/buz/internal/tele/startup/v1.0.json index 0ae9b996..244f9760 100644 --- a/schemas/io.silverton/buz/internal/tele/startup/v1.0.json +++ b/schemas/io.silverton/buz/internal/tele/startup/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/internal/tele/startup/v1.0.json", "title": "io.silverton/buz/internal/tele/startup/v1.0.json", "description": "Buz startup event", diff --git a/schemas/io.silverton/buz/pixel/arbitrary/v1.0.json b/schemas/io.silverton/buz/pixel/arbitrary/v1.0.json index 282778aa..b0b1d9f2 100644 --- a/schemas/io.silverton/buz/pixel/arbitrary/v1.0.json +++ b/schemas/io.silverton/buz/pixel/arbitrary/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/pixel/arbitrary/v1.0.json", "title": "io.silverton/buz/pixel/arbitrary/v1.0.json", "description": "A catchall schema for unnamed events consisting of arbitrary pixel payloads.", diff --git a/schemas/io.silverton/buz/pixel/linkClick/v1.0.json b/schemas/io.silverton/buz/pixel/linkClick/v1.0.json index 30970e1b..8cb53c35 100644 --- a/schemas/io.silverton/buz/pixel/linkClick/v1.0.json +++ b/schemas/io.silverton/buz/pixel/linkClick/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/pixel/linkClick/v1.0.json", "title": "io.silverton/buz/pixel/linkClick/v1.0.json", "description": "A generalized schema for link clicks tracked via pixel", diff --git a/schemas/io.silverton/buz/pixel/pageView/v1.0.json b/schemas/io.silverton/buz/pixel/pageView/v1.0.json index 0fc93b99..5a0b3fdf 100644 --- a/schemas/io.silverton/buz/pixel/pageView/v1.0.json +++ b/schemas/io.silverton/buz/pixel/pageView/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/buz/pixel/pageView/v1.0.json", "title": "io.silverton/buz/pixel/pageView/v1.0.json", "description": "A generalized schema for page views tracked via pixel", diff --git a/schemas/io.silverton/segment/common/v1.0.json b/schemas/io.silverton/segment/common/v1.0.json index 954920d5..8c9c09d7 100644 --- a/schemas/io.silverton/segment/common/v1.0.json +++ b/schemas/io.silverton/segment/common/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/segment/spec/common/v1.0.json", "title": "io.silverton/segment/spec/common/v1.0.json", "description": "Segment common fields spec", diff --git a/schemas/io.silverton/snowplow/page_ping/v1.0.json b/schemas/io.silverton/snowplow/page_ping/v1.0.json index 070ad28d..bbba650a 100644 --- a/schemas/io.silverton/snowplow/page_ping/v1.0.json +++ b/schemas/io.silverton/snowplow/page_ping/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/snowplow/page_ping/v1.0.json", "title": "io.silverton/snowplow/page_ping/v1.0.json", "description": "Snowplow Page Ping Event", diff --git a/schemas/io.silverton/snowplow/page_view/v1.0.json b/schemas/io.silverton/snowplow/page_view/v1.0.json index eee38153..fc408f79 100644 --- a/schemas/io.silverton/snowplow/page_view/v1.0.json +++ b/schemas/io.silverton/snowplow/page_view/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/snowplow/page_view/v1.0.json", "title": "io.silverton/snowplow/page_view/v1.0.json", "description": "Snowplow Page View Event", diff --git a/schemas/io.silverton/snowplow/payload_data/v1.4.json b/schemas/io.silverton/snowplow/payload_data/v1.4.json index 24ceb2e0..71aa3f23 100644 --- a/schemas/io.silverton/snowplow/payload_data/v1.4.json +++ b/schemas/io.silverton/snowplow/payload_data/v1.4.json @@ -267,5 +267,5 @@ ], "additionalProperties": false, "type": "object", - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json" + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json" } \ No newline at end of file diff --git a/schemas/io.silverton/snowplow/struct/v1.0.json b/schemas/io.silverton/snowplow/struct/v1.0.json index ac53b73b..656bf54b 100644 --- a/schemas/io.silverton/snowplow/struct/v1.0.json +++ b/schemas/io.silverton/snowplow/struct/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/snowplow/struct/v1.0.json", "title": "io.silverton/snowplow/struct/v1.0.json", "description": "Snowplow Struct Event", diff --git a/schemas/io.silverton/snowplow/transaction/v1.0.json b/schemas/io.silverton/snowplow/transaction/v1.0.json index cc5c8850..a7df0bd8 100644 --- a/schemas/io.silverton/snowplow/transaction/v1.0.json +++ b/schemas/io.silverton/snowplow/transaction/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/snowplow/transaction/v1.0.json", "title": "io.silverton/snowplow/transaction/v1.0.json", "description": "Snowplow Transaction Event", diff --git a/schemas/io.silverton/snowplow/transaction_item/v1.0.json b/schemas/io.silverton/snowplow/transaction_item/v1.0.json index a7eb25d5..6b91d983 100644 --- a/schemas/io.silverton/snowplow/transaction_item/v1.0.json +++ b/schemas/io.silverton/snowplow/transaction_item/v1.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://r.buz.dev/s/io.silverton/buz/internal/meta/v1.0.json", + "$schema": "https://raw.githubusercontent.com/silverton-io/buz/main/schemas/io.silverton/buz/internal/meta/v1.0.json", "$id": "io.silverton/snowplow/transaction_item/v1.0.json", "title": "io.silverton/snowplow/transaction_item/v1.0.json", "description": "Snowplow Transaction Item Event", From 0b9f0699e45bdef922dd87d190dbc1ca35d38ca0 Mon Sep 17 00:00:00 2001 From: jakthom Date: Wed, 3 May 2023 13:59:45 -0400 Subject: [PATCH 3/3] bump to 0.16.4 --- deploy/terraform/gcp/cloud_run/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/terraform/gcp/cloud_run/variables.tf b/deploy/terraform/gcp/cloud_run/variables.tf index 9ff93c2f..429c7074 100644 --- a/deploy/terraform/gcp/cloud_run/variables.tf +++ b/deploy/terraform/gcp/cloud_run/variables.tf @@ -28,7 +28,7 @@ variable "buz_domain" { variable "buz_version" { description = "The version of Buz to run." type = string - default = "v0.16.3" + default = "v0.16.4" } variable "buz_service_timeout_seconds" {