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 19 additions and 0 deletions
Showing only changes of commit abaabb92e1 - Show all commits
+13
View File
@@ -0,0 +1,13 @@
name: l1-s3
kind: l1
description: Object store primitive
inputs:
bucket_name:
description: Globally unique name of the S3 bucket
type: string
region:
description: AWS region the bucket lives in
type: string
retention_days:
description: Number of days to retain objects before expiration
type: string
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[L1: l1-s3] applying..."
sleep 1
echo "[L1: l1-s3] OK"
exit 0