This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"events": [ | |
{ | |
"name": "daily", | |
"type": "schedule", | |
"config": { | |
"enabled": true, | |
"schedule": "cron(0 15 * * ? *)" | |
} | |
} | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Effect": "Allow", | |
"Action": [ | |
"s3:ListBucket", | |
"s3:ListAllMyBuckets", | |
"s3:GetObject" | |
], | |
"Resource": "arn:aws:s3:::*" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "The AWS CloudFormation template for this Serverless application's resources outside of Lambdas and Api Gateway", | |
"Resources": { | |
"IamRoleLambda": { | |
"Type": "AWS::IAM::Role", | |
"Properties": { | |
"AssumeRolePolicyDocument": { | |
"Version": "2012-10-17", | |
"Statement": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:alpine | |
MAINTAINER mizu <[email protected]> | |
RUN set -x \ | |
&& apk upgrade --no-cache \ | |
&& apk add --no-cache --virtual build-dependencies \ | |
build-base \ | |
&& apk add --no-cache \ | |
libxml2-dev \ | |
libxslt-dev \ |