Skip to content

Commit 925c3de

Browse files
fix: prefix default and deadletter outputs w/ system+env prefix also for aws lambda/ firehouse (#583)
* add profile param var.aws_profile to aws ecr get-login-password cmd * prefix default and deadletter outputs w/ system+env prefix (i.e. names of firehouse streams) * bump the version to allow CI stuff having a smooth ride
1 parent 0fe193f commit 925c3de

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.18.1
1+
v0.18.2

deploy/terraform/aws/lambda/locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ locals {
1212
config = "${local.system_env_base}config"
1313
schema_bucket = "${local.system_env_base}${var.schema_bucket_name}"
1414
events_bucket = "${local.system_env_base}${var.events_bucket_name}"
15-
default_output = "buz_events"
16-
deadletter_output = "buz_invalid_events"
15+
default_output = "${local.system_env_base}events"
16+
deadletter_output = "${local.system_env_base}invalid-events"
1717
metadata_extraction_params = "{isValid:.isValid,vendor:.vendor,namespace:.namespace,version:.version}"
1818
s3_dynamic_prefix = "isValid=!{partitionKeyFromQuery:isValid}/vendor=!{partitionKeyFromQuery:vendor}/namespace=!{partitionKeyFromQuery:namespace}/version=!{partitionKeyFromQuery:version}/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/"
1919
}

deploy/terraform/aws/lambda/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ variable "buz_image_repo" {
4141
variable "buz_version" {
4242
description = "The version of Buz to run."
4343
type = string
44-
default = "v0.18.1"
44+
default = "v0.18.2"
4545
}
4646

4747
variable "buz_lambda_memory_limit" {

deploy/terraform/gcp/cloud_run/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ variable "buz_domain" {
2828
variable "buz_version" {
2929
description = "The version of Buz to run."
3030
type = string
31-
default = "v0.18.1"
31+
default = "v0.18.2"
3232
}
3333

3434
variable "buz_service_timeout_seconds" {

examples/quickstart/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ x-dependency:
2020
services:
2121
buz:
2222
container_name: buz
23-
image: ghcr.io/silverton-io/buz:v0.18.1
23+
image: ghcr.io/silverton-io/buz:v0.18.2
2424
volumes:
2525
- type: bind
2626
source: ./buz/quickstart.conf.yml

0 commit comments

Comments
 (0)