2022-10-17 15:17:13 +03:00
|
|
|
import type { AWS } from '@serverless/typescript';
|
|
|
|
|
2022-10-18 10:29:08 +03:00
|
|
|
import buildPackages from '@functions/buildPackages';
|
2022-10-17 15:17:13 +03:00
|
|
|
|
|
|
|
const serverlessConfiguration: AWS = {
|
|
|
|
service: 'lambdas',
|
|
|
|
frameworkVersion: '3',
|
|
|
|
plugins: ['serverless-esbuild'],
|
|
|
|
provider: {
|
|
|
|
name: 'aws',
|
|
|
|
runtime: 'nodejs14.x',
|
|
|
|
apiGateway: {
|
|
|
|
minimumCompressionSize: 1024,
|
|
|
|
shouldStartNameWithService: true,
|
|
|
|
},
|
|
|
|
environment: {
|
|
|
|
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1',
|
|
|
|
NODE_OPTIONS: '--enable-source-maps --stack-trace-limit=1000',
|
2022-10-18 09:07:24 +03:00
|
|
|
AWS_DIST_BUCKET: '',
|
2022-10-17 15:17:13 +03:00
|
|
|
},
|
2022-10-18 07:36:26 +03:00
|
|
|
iam: {
|
2022-10-18 09:07:24 +03:00
|
|
|
deploymentRole: `arn:aws:iam::${process.env.AWS_ACCOUNT_ID || '640264234305'}:role/CloudFormationExecutionRole`,
|
|
|
|
role: {
|
|
|
|
statements: [
|
|
|
|
{
|
|
|
|
"Effect": "Allow",
|
2022-10-18 09:38:02 +03:00
|
|
|
"Resource": [
|
2022-10-19 10:05:15 +03:00
|
|
|
"arn:aws:s3:::dist.tea.xyz",
|
2022-10-19 02:06:55 +03:00
|
|
|
"arn:aws:s3:::dist.tea.xyz/*",
|
|
|
|
"arn:aws:s3:::dist.tea.xyz/*/*",
|
2022-10-18 09:38:02 +03:00
|
|
|
],
|
2022-10-18 09:07:24 +03:00
|
|
|
"Action": [
|
2022-10-19 10:05:15 +03:00
|
|
|
"s3:GetBucketAcl",
|
|
|
|
"s3:List",
|
2022-10-19 09:56:18 +03:00
|
|
|
"s3:ListBucket",
|
2022-10-18 09:07:24 +03:00
|
|
|
"s3:PutObject"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-10-18 07:36:26 +03:00
|
|
|
}
|
2022-10-17 15:17:13 +03:00
|
|
|
},
|
|
|
|
// import the function via paths
|
2022-10-18 07:46:27 +03:00
|
|
|
functions: {
|
2022-10-18 10:29:08 +03:00
|
|
|
buildPackages,
|
2022-10-18 07:46:27 +03:00
|
|
|
},
|
2022-10-17 15:17:13 +03:00
|
|
|
package: { individually: true },
|
|
|
|
custom: {
|
|
|
|
esbuild: {
|
|
|
|
bundle: true,
|
|
|
|
minify: false,
|
|
|
|
sourcemap: true,
|
|
|
|
exclude: ['aws-sdk'],
|
|
|
|
target: 'node14',
|
|
|
|
define: { 'require.resolve': undefined },
|
|
|
|
platform: 'node',
|
|
|
|
concurrency: 10,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = serverlessConfiguration;
|