This is an AWS Lambda function that fetches the daily price of bitcoin from Coindesk. Using Amazon Simple Notification Service, it is able to send an SMS each day to a pre-configured phone number.
Note: SNS only supports SMS messaging in a subset of regions. Please see the linked support document to ensure you deploy this application in a supported region.
Deploying this serverless app to your AWS account is quick and easy using AWS CloudFormation.
With the AWS CLI installed, run the following command to upload the code to S3. Set DEPLOYMENT_S3_BUCKET
to bucket you own; CloudFormation will copy the code function into a ZIP file in this S3 bucket, which can be deployed to AWS Lambda in the following steps.
DEPLOYMENT_S3_BUCKET="YOUR_S3_BUCKET"
aws cloudformation package --template-file cloudformation.yaml --s3-bucket $DEPLOYMENT_S3_BUCKET \
--output-template-file cloudformation-packaged.yaml
- You can set the following parameters:
STACK_NAME
is the name of the CloudFormation stack that you'll create to manage all the resources (Lambda functions, CloudWatch Events) associated with this app. You can set this to a new value to create a new instance with different parameters in your account, or use the same value when re-running to update parameters of an existing deployment.PHONE_NUMBER
is the recipient of the daily headline. Use E.164 (e.g. +919987123456) format.UTC_HOUR
is the UTC hour at which to send the price.
STACK_NAME="serverless-daily-bitcoin-checker"
PHONE_NUMBER="+919987123456"
UTC_HOUR="3"
- With the configuration parameters defined, we can call
cloudformation deploy
to create the necessary resources in your AWS account:
aws cloudformation deploy --template-file cloudformation-packaged.yaml \
--capabilities CAPABILITY_IAM \
--parameter-overrides "PhoneNumber=$PHONE_NUMBER" "UTCHour=$UTC_HOUR" \
--stack-name $STACK_NAME
If all went well, your stack has now been created.
- We're almost done. The SMS subscription that you've setup may not send the SMS in a timely or a reliable manner. To change that, update your Text Messaging preferences in SNS to
Transactional
. You can read more here.
That's it. You're daily bitcoin price ticker should be up and running smoothly.
(Please open an issue thread if things do not seem to work out for you)