Skip to content

Commit

Permalink
fix: prefix default and deadletter outputs w/ system+env prefix also …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
semanticdreamer authored Feb 15, 2024
1 parent 0fe193f commit 925c3de
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.18.1
v0.18.2
4 changes: 2 additions & 2 deletions deploy/terraform/aws/lambda/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ locals {
config = "${local.system_env_base}config"
schema_bucket = "${local.system_env_base}${var.schema_bucket_name}"
events_bucket = "${local.system_env_base}${var.events_bucket_name}"
default_output = "buz_events"
deadletter_output = "buz_invalid_events"
default_output = "${local.system_env_base}events"
deadletter_output = "${local.system_env_base}invalid-events"
metadata_extraction_params = "{isValid:.isValid,vendor:.vendor,namespace:.namespace,version:.version}"
s3_dynamic_prefix = "isValid=!{partitionKeyFromQuery:isValid}/vendor=!{partitionKeyFromQuery:vendor}/namespace=!{partitionKeyFromQuery:namespace}/version=!{partitionKeyFromQuery:version}/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/"
}
2 changes: 1 addition & 1 deletion deploy/terraform/aws/lambda/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ variable "buz_image_repo" {
variable "buz_version" {
description = "The version of Buz to run."
type = string
default = "v0.18.1"
default = "v0.18.2"
}

variable "buz_lambda_memory_limit" {
Expand Down
2 changes: 1 addition & 1 deletion deploy/terraform/gcp/cloud_run/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ variable "buz_domain" {
variable "buz_version" {
description = "The version of Buz to run."
type = string
default = "v0.18.1"
default = "v0.18.2"
}

variable "buz_service_timeout_seconds" {
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ x-dependency:
services:
buz:
container_name: buz
image: ghcr.io/silverton-io/buz:v0.18.1
image: ghcr.io/silverton-io/buz:v0.18.2
volumes:
- type: bind
source: ./buz/quickstart.conf.yml
Expand Down

0 comments on commit 925c3de

Please sign in to comment.