Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

serverless-fargate-tasks

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-fargate-tasks - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

4

lib/index.js

@@ -116,2 +116,4 @@ 'use strict';

let desired = options.tasks[identifier]['desired']
// create the service definition

@@ -124,3 +126,3 @@ var service = {

'ServiceName': identifier,
'DesiredCount': options.tasks[identifier]['desired'] || 1,
'DesiredCount': desired == undefined ? 1 : desired,
'TaskDefinition': {"Fn::Sub": '${' + name + 'Task}'},

@@ -127,0 +129,0 @@ 'NetworkConfiguration': {

@@ -17,3 +17,3 @@ {

},
"version": "0.1.0"
"version": "0.2.0"
}

@@ -11,3 +11,3 @@ Serverless Fargate Tasks

fargate:
network:
vpc:
subnets:

@@ -36,3 +36,3 @@ - subnet-1234

network:
vpc:
public-ip: DISABLED # optional, defaults to disabled

@@ -75,5 +75,5 @@ subnets:

Foo: BAR
network:
vpc:
Foo: BAR
role: ARN
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc