ship: phase-02 l1-modules #2

Merged
grimacing merged 14 commits from phase/02-l1-modules into milestone/v1.0-initial 2026-07-21 13:18:13 +00:00
2 changed files with 16 additions and 0 deletions
Showing only changes of commit a11884faec - Show all commits
+10
View File
@@ -0,0 +1,10 @@
name: l1-eventbridge
kind: l1
description: Event bus primitive
inputs:
bus_name:
description: Name of the EventBridge bus
type: string
rule_name:
description: Name of the event rule on the bus
type: string
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[L1: l1-eventbridge] applying..."
sleep 1
echo "[L1: l1-eventbridge] OK"
exit 0