Skip to content

Instantly share code, notes, and snippets.

View gimmebytes's full-sized avatar

Marvin Kruse gimmebytes

  • Otto
  • Hamburg, Germany
View GitHub Profile
@gimmebytes
gimmebytes / eventbridge-stack.ts
Created July 13, 2023 08:20
Incomplete example of CDK code for deploying an Eventbridge-Bus with some basic routing capabilities
import * as cdk from 'aws-cdk-lib';
import * as eventbridge from 'aws-cdk-lib/aws-events';
import * as sns from 'aws-cdk-lib/aws-sns';
import * as iam from 'aws-cdk-lib/aws-iam';
export class EventBridgeStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// Create EventBridge bus
@gimmebytes
gimmebytes / config.yml
Last active March 15, 2017 09:22
Configure ebean 10.x logs within Dropwizard application
logging:
level: INFO
loggers:
"io.ebean.SQL": TRACE