AWS Polly Service with Node-RED

I have used NodeRed to subscribe to messages from an MQTT service I have running that publishes various messages from various nodes around our house. The NodeRed code listens for some of these messages and uses the AWS Polly Service to convert them to speech and read them out to us. There’s a sample of the speech, below, as well as screen shots of the NodeRed flows. Alexa...

August 9, 2017

AWS IAM policy for granting privileges to S3 bitbuckets for WordPress UpdraftPlus Backups

Replace ‘mybucket’ with the name of the bitbucket that you wish to grant privileges to. { "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation", "s3:ListBucketMultipartUploads" ], "Resource": "arn:aws:s3:::mybucket", "Condition": {} }, { "Effect": "Allow", "Action": [ "s3:AbortMultipartUpload", "s3:DeleteObject", "s3:DeleteObjectVersion", "s3:GetObject", "s3:GetObjectAcl", "s3:GetObjectVersion", "s3:GetObjectVersionAcl", "s3:PutObject", "s3:PutObjectAcl", "s3:PutObjectVersionAcl" ], "Resource": "arn:aws:s3:::mybucket/*", "Condition": {} }, { "Effect": "Allow", "Action": "s3:ListAllMyBuckets", "Resource": "*", "Condition": {} } ] }

November 7, 2016