UNPKG

sls-helper-plugin-janis

Version:

A Serverless Helper plugin to add custom helpers for Janis Commerce

9 lines (6 loc) 303 B
'use strict'; module.exports.shouldAddVPCConfig = () => process.env.LAMBDA_SECURITY_GROUP_ID && process.env.LAMBDA_SUBNET_IDS; module.exports.getVPCConfig = () => ({ securityGroupIds: [process.env.LAMBDA_SECURITY_GROUP_ID], subnetIds: process.env.LAMBDA_SUBNET_IDS.replace(/\s/g, '').split(',') });