s3-resource-simple/assets/in

35 lines
758 B
Text
Raw Permalink Normal View History

#!/bin/sh
set -e
exec 3>&1 # make stdout available as fd 3 for the result
exec 1>&2 # redirect all output to stderr for logging
dest=$1
if [ -z "$dest" ]; then
echo "usage: $0 <path/to/volume>"
exit 1
fi
source "$(dirname $0)/common.sh"
payload=`cat`
bucket=$(get_bucket)
2018-10-30 01:56:37 +01:00
prefix=$(get_prefix)
2021-03-25 01:57:12 +01:00
aws_options=$(echo "$payload" | jq -r '.source.aws_options // [] | join(" ")')
options=$(echo "$payload" | jq -r '.params.options // [] | join(" ")')
2018-10-26 21:55:37 +02:00
skip_download=$(echo "$payload" | jq -r '.params.skip_download // false')
export_aws_vars
if [ "$skip_download" = "true" ]; then
2018-10-26 21:55:37 +02:00
echo "Skipping download from S3"
else
echo "Downloading from S3..."
2021-03-25 01:57:12 +01:00
eval aws $aws_options s3 sync "s3://$bucket/$prefix" $dest $options
2018-10-26 21:55:37 +02:00
echo "Done."
fi
emit_version