/template.yaml Secret
Last active
July 19, 2020 06:41
template
This file contains 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' | |
Transform: 'AWS::Serverless-2016-10-31' | |
Description: S3 notification system. | |
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
BucketName: | |
Description: S3 Bucket name | |
Type: String | |
Default: item-store | |
Region: | |
Description: Region | |
Type: String | |
Default: ap-southeast-2 | |
SenderEmail: | |
Description: Email Address of the sender | |
Type: String | |
Default: Verified@test.com | |
Resources: | |
PurchaseInputRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- Effect: Allow | |
Principal: | |
Service: lambda.amazonaws.com | |
Action: 'sts:AssumeRole' | |
Path: / | |
ManagedPolicyArns: | |
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" | |
Policies: | |
- PolicyName: S3Policy | |
PolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- Effect: Allow | |
Action: | |
- 's3:PutObject' | |
Resource: !Sub "arn:aws:s3:::${BucketName}/*" | |
PurchaseProcessRole: | |
Type: AWS::IAM::Role | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- Effect: Allow | |
Principal: | |
Service: lambda.amazonaws.com | |
Action: 'sts:AssumeRole' | |
Path: / | |
ManagedPolicyArns: | |
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" | |
Policies: | |
- PolicyName: SESPolicy | |
PolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- Effect: Allow | |
Action: | |
- "ses:SendEmail" | |
Resource: "*" | |
- PolicyName: ReadPurchasePolicy | |
PolicyDocument: | |
Version: '2012-10-17' | |
Statement: | |
- Effect: Allow | |
Action: | |
- "s3:GetObject" | |
Resource: !Sub "arn:aws:s3:::${BucketName}/*" | |
api: | |
Type: AWS::Serverless::Api | |
Properties: | |
StageName: api | |
TracingEnabled: true | |
OpenApiVersion: 3.0.2 | |
PurchaseDataProcess: | |
Type: AWS::Lambda::Function | |
Properties: | |
Description: Function that is called after file is written in S3 bucket. | |
Handler: purchase_process.handler | |
Runtime: nodejs12.x | |
Role: !GetAtt PurchaseProcessRole.Arn | |
Code: . | |
Timeout: 10 | |
Environment: | |
Variables: | |
SenderEmail: !Ref SenderEmail | |
PurchaseDataInput: | |
Type: AWS::Serverless::Function | |
Properties: | |
Description: Function that takes in the customer info and writes into S3 bucket. | |
Handler: purchase_input.handler | |
Runtime: nodejs12.x | |
Role: !GetAtt PurchaseInputRole.Arn | |
CodeUri: . | |
Policies: | |
- AWSLambdaBasicExecutionRole | |
- AWSLambdaReadOnlyAccess | |
Events: | |
Input: | |
Type: Api | |
Properties: | |
RestApiId: !Ref api | |
Path: /purchase | |
Method: POST | |
Environment: | |
Variables: | |
BucketName: | |
Ref: BucketName | |
Bucket: | |
Type: AWS::S3::Bucket | |
DependsOn: BucketPermission | |
Properties: | |
BucketName: !Ref BucketName | |
NotificationConfiguration: | |
LambdaConfigurations: | |
- Event: 's3:ObjectCreated:*' | |
Function: !GetAtt PurchaseDataProcess.Arn | |
BucketPermission: | |
Type: AWS::Lambda::Permission | |
Properties: | |
Action: 'lambda:InvokeFunction' | |
FunctionName: !Ref PurchaseDataProcess | |
Principal: s3.amazonaws.com | |
SourceAccount: !Ref "AWS::AccountId" | |
SourceArn: !Sub "arn:aws:s3:::${BucketName}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment