#!/usr/bin/env bash
# Thin wrapper — delegates to the Python control plane (daylily_ec).
# The original Bash implementation is preserved at:
#   bin/legacy/daylily-create-ephemeral-cluster.bash
#
# Usage:
#   daylily-create-ephemeral-cluster --region-az us-west-2b [OPTIONS]
set -euo pipefail

exec python -m daylily_ec create "$@"
