Skip to content

Instantly share code, notes, and snippets.

@leegilmorecode
Created June 19, 2021 14:16
Show Gist options
  • Save leegilmorecode/cb5bb48c4e9db3210436b39125cb77e4 to your computer and use it in GitHub Desktop.
Save leegilmorecode/cb5bb48c4e9db3210436b39125cb77e4 to your computer and use it in GitHub Desktop.
Example of configuring alarms only for certain environments
import type { AWS } from "@serverless/typescript";
import hello from "@functions/hello";
import { configureAlarms } from "@libs/alarms";
const serverlessConfiguration: AWS = {
service: "test",
frameworkVersion: "2",
custom: {
webpack: {
webpackConfig: "./webpack.config.js",
includeModules: true,
},
},
plugins: ["serverless-webpack"],
provider: {
name: "aws",
runtime: "nodejs14.x",
apiGateway: {
minimumCompressionSize: 1024,
shouldStartNameWithService: true,
},
environment: {
AWS_NODEJS_CONNECTION_REUSE_ENABLED: "1",
},
lambdaHashingVersion: "20201221",
},
// import the function via paths
functions: { hello },
// create the resources
resources: {
Resources: {
...configureAlarms(),
},
},
};
module.exports = serverlessConfiguration;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment