
Security News
Socket Integrates With Bun 1.3’s Security Scanner API
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
gulp-cloudformation
Advanced tools
Simple gulp plugin for deploying stack files to AWS cloudformation
This module will WAIT until the deployment is entirely finished before completing the task. Useful if you want to ensure the deployment is complete before running other gulp tasks.
gulpfile.js
var gulp = require('gulp')
var cloudformation = require('gulp-cloudformation')
gulp.task('stack', () => {
return gulp.src(['location/to/[name-of-stack-file].json'])
.pipe(cloudformation.init({ //Only validates the stack files
region: 'us-east-1',
accessKeyId: 'YOUR AWS ACCESS KEY ID',
secretAccessKey: 'YOUR AWS SECRET ACCESS KEY'
})
.pipe(cloudformation.deploy({ //deploy stack files
Capabilities: [ 'CAPABILITY_IAM' ] //needed if deploying IAM Roles
StackName: 'SomeStack' // Optional: defaults to the name of the stack file
}))
.on('error', (error) => {
util.log('Stream Exiting With Error', error)
throw error
})
})
The source is available for download from GitHub
For node js, you can install using Node Package Manager npm
npm install gulp-cloudformation
In node js:
var cloudformation = require('gulp-cloudformation')
FAQs
Gulp plugin for AWS cloudformation
We found that gulp-cloudformation 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
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.
Security News
Former RubyGems maintainers have launched The Gem Cooperative, a new community-run project aimed at rebuilding open governance in the Ruby ecosystem.