Files
shuffle-cracked/functions/extensions/aws-lambda/deploy.sh
T
2021-01-17 15:38:58 +01:00

10 lines
250 B
Bash

GOOS=linux go build main.go
zip function.zip main
aws lambda update-function-code \
--function-name shuffler-forwarder \
--runtime go1.* \
--zip-file fileb://function.zip \
--handler main \
--role arn:aws:iam::123456789012:role/execution_role