Recipe: SSM Parameter Store hierarchy
Organize secrets, feature flags, and runtime config in a predictable path tree. Meridian syncs your /app/env/ hierarchy to AWS Systems Manager Parameter Store with automatic KMS encryption, versioning, and IAM-scoped access policies — no manual console clicks.
Quick start
# Fetch a single parameter
curl -H "Authorization: Bearer $MERIDIAN_TOKEN" \
https://api.getnimbus.net/v1/params/app/env/DATABASE_URL
# Python SDK
from meridian import Client
c = Client(token="mrd_live_...")
db_url = c.param("/app/env/DATABASE_URL")
print(db_url.value) # decrypted automatically