
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@ask-utils/sam-boilerplate
Advanced tools
Simply boilerplate for Alexa Skill Backend.
Simple generate boilerplate by following command.
$ npx @ask-utils/sam-boilerplate
const { generateBoilerplate } = require('sam-boilerplate');
const stack = generateBoilerplate({
format: 'yaml'
})
You can get SAM template
Transform: 'AWS::Serverless-2016-10-31'
Parameters:
Stage:
Type: String
Default: production
Description: stage
Conditions:
IsProduction:
'Fn::Equals':
- Ref: Stage
- production
Resources:
LambdaRole3A44B857:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: 'sts:AssumeRole'
Effect: Allow
Principal:
Service:
'Fn::Join':
- ''
- - lambda.
- Ref: 'AWS::URLSuffix'
Version: '2012-10-17'
Path: /service-role/
AlexaSkillFunction:
Type: 'AWS::Serverless::Function'
Properties:
CodeUri: src
Handler: index.handler
Runtime: nodejs8.10
AutoPublishAlias:
Ref: Stage
DeploymentPreference:
Enabled: true
Type:
'Fn::If':
- IsProduction
- Linear10PercentEvery1Minute
- AllAtOnce
Events:
AlexaSkill:
Properties: {}
Type: AlexaSkill
Role:
'Fn::GetAtt':
- LambdaRole3A44B857
- Arn
SkillFunctionLogGroup:
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName:
'Fn::Join':
- /
- - /aws/lambda
- Ref: AlexaSkillFunction
RetentionInDays: 14
And you can easy to get SAM stack with IAM role for S3 and DynamoDB
console.log(generateBoilerplate({
format: 'yaml',
dbTableNames: ['test'],
s3BucketNames: ['brabra']
}))
This is the result
Transform: 'AWS::Serverless-2016-10-31'
Parameters:
Stage:
Type: String
Default: production
Description: stage
Conditions:
IsProduction:
'Fn::Equals':
- Ref: Stage
- production
Resources:
LambdaPolicy7FF67BE6:
Type: 'AWS::IAM::Policy'
Properties:
PolicyDocument:
Statement:
- Action:
- 'dynamodb:PutItem'
- 'dynamodb:DeleteItem'
- 'dynamodb:GetItem'
Effect: Allow
Resource: 'arn:aws:dynamodb:*:*:table/test'
- Action:
- 's3:PutObject'
- 's3:GetObject'
- 's3:DeleteObject'
Effect: Allow
Resource: 'arn:aws:s3:::brabra/*'
Version: '2012-10-17'
PolicyName: BoilerPlateStackInlinePolicy
Roles:
- Ref: LambdaRole3A44B857
LambdaRole3A44B857:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: 'sts:AssumeRole'
Effect: Allow
Principal:
Service:
'Fn::Join':
- ''
- - lambda.
- Ref: 'AWS::URLSuffix'
Version: '2012-10-17'
Path: /service-role/
AlexaSkillFunction:
Type: 'AWS::Serverless::Function'
Properties:
CodeUri: src
Handler: index.handler
Runtime: nodejs8.10
AutoPublishAlias:
Ref: Stage
DeploymentPreference:
Enabled: true
Type:
'Fn::If':
- IsProduction
- Linear10PercentEvery1Minute
- AllAtOnce
Events:
AlexaSkill:
Properties: {}
Type: AlexaSkill
Role:
'Fn::GetAtt':
- LambdaRole3A44B857
- Arn
SkillFunctionLogGroup:
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName:
'Fn::Join':
- /
- - /aws/lambda
- Ref: AlexaSkillFunction
RetentionInDays: 14
Generate SAM template.
const stack = generateBoilerplate( {
name: 'BoilerPlateStack',
codeUri: 'src',
handler: 'index.handler',
s3BucketNames: [],
dbTableNames: [],
productionStageName: 'production',
format: 'json'
}
)
FAQs
Boilerplate generater for Alexa Skill backend by AWS CDK
We found that @ask-utils/sam-boilerplate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.