diff --git a/modules/l1/l1-sqs/manifest.yaml b/modules/l1/l1-sqs/manifest.yaml new file mode 100644 index 0000000..dc46476 --- /dev/null +++ b/modules/l1/l1-sqs/manifest.yaml @@ -0,0 +1,10 @@ +name: l1-sqs +kind: l1 +description: Queue primitive +inputs: + queue_name: + description: Name of the SQS queue + type: string + visibility_timeout: + description: Visibility timeout in seconds for in-flight messages + type: string \ No newline at end of file diff --git a/modules/l1/l1-sqs/mock_apply.sh b/modules/l1/l1-sqs/mock_apply.sh new file mode 100755 index 0000000..585d40b --- /dev/null +++ b/modules/l1/l1-sqs/mock_apply.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -euo pipefail +echo "[L1: l1-sqs] applying..." +sleep 1 +echo "[L1: l1-sqs] OK" +exit 0 \ No newline at end of file