Skip to content

Instantly share code, notes, and snippets.

@javatodev
Created September 21, 2022 15:25
Show Gist options
  • Save javatodev/594b3164df3117d72259ad09497c118b to your computer and use it in GitHub Desktop.
Save javatodev/594b3164df3117d72259ad09497c118b to your computer and use it in GitHub Desktop.
service: file-conversion-app
frameworkVersion: '3'
provider:
name: aws
runtime: nodejs14.x
timeout: 10
stage: dev
iam:
role:
statements:
- Effect: "Allow"
Action:
- "s3:GetObject"
- "s3:PutObject"
Resource: "arn:aws:s3:::<S3_BUCKET_NAME>/*"
functions:
fileConversion:
handler: handler.fileConversion
events:
- httpApi:
path: /
method: get
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment