Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
cimpress-grunt-aws-swaggerimport
Advanced tools
Grunt plugin to configure AWS API Gateway via a Swagger config
Grunt plugin to configure AWS API Gateway via a Swagger config and configure lambda permissions for API gateway.
This plugin requires Grunt.
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install cimpress-grunt-aws-swaggerimport --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('cimpress-grunt-aws-swaggerimport');
In your project's Gruntfile, add a section named import_swagger
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
import_swagger: {
options: {
accessKeyId: 'your-aws-access-key-id',
secretAccessKey: 'your-aws-secret-access-key',
region: 'your-aws-region',
assumeRole: {}, // OPTIONAL
},
your_target: {
// REQUIRED: Either String or Object.
swagger_config: 'path/to/your/swagger-file.json',
// OPTIONAL
update: {
restApiId: 'id-of-api-to-update'
mode: 'overwrite', // May be either merge or overwrite.
},
// OPTIONAL
deployment: {
stageName: 'my-stage',
cacheClusterEnabled: false,
description: 'My deployment ' + Date.now(),
stageDescription: 'My stage description',
variables: {
someStageVariable: 'some-stage-variable',
}
},
},
},
})
Type: String
AWS Access Key Id with which to import the API
Type: String
AWS Secret Access Key Id with which to import the API
Type: String
AWS region in which to import the API
Type: String
Optional. Hash of params to deploy the API by assuming a role. See the AWS assumeRole docs for info on the parameters to provide here.
var params = {
RoleArn: 'STRING_VALUE', /* required */
RoleSessionName: 'STRING_VALUE', /* required */
DurationSeconds: 0,
ExternalId: 'STRING_VALUE',
Policy: 'STRING_VALUE',
SerialNumber: 'STRING_VALUE',
TokenCode: 'STRING_VALUE'
};
Type: String
OR Object
Required. Can either be a (string) path to swagger json file, or inline object.
Using an inline object means it can be dynamically constructed.
// swagger_config: {/* ... config as object ... */}
Type: Object
Optional. Include the update block if you want to update an existing API A new API will be created if no update block is provided.
Type: Object
Optional. Include the deployment block if you want to deploy the API to a stage.
See the AWS createDeployment docs for info on these parameters (note: restApiId
is taken from the swagger import result and cannot be specified in these deployment params).
{
stageName: 'STRING_VALUE', /* required */
cacheClusterEnabled: true || false,
cacheClusterSize: '0.5 | 1.6 | 6.1 | 13.5 | 28.4 | 58.2 | 118 | 237',
description: 'STRING_VALUE',
stageDescription: 'STRING_VALUE',
variables: {
someKey: 'STRING_VALUE',
/* anotherKey: ... */
}
}
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Added the ability to provide an AWS IAM role to assume, with which to deploy the API.
Update to contact email
Initial release.
Copyright (c) 2016 Simple Merchant. Licensed under the MIT license.
FAQs
Grunt plugin to configure AWS API Gateway via a Swagger config
The npm package cimpress-grunt-aws-swaggerimport receives a total of 0 weekly downloads. As such, cimpress-grunt-aws-swaggerimport popularity was classified as not popular.
We found that cimpress-grunt-aws-swaggerimport 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.