Comparing version 0.0.12 to 0.0.13
@@ -45,4 +45,5 @@ const { program } = require("commander"); | ||
// TODO: deploy lambda function directly without s3 | ||
// TODO: deploy lambda@edge function | ||
program.parse(process.argv); | ||
@@ -49,0 +50,0 @@ const options = program.opts(); |
{ | ||
"name": "awsass", | ||
"description": "AWSASS is an assistant to AWS, mostly for running better scripts.", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"author": "Jsonize", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/awsass", |
@@ -118,3 +118,3 @@ const AWS = require("aws-sdk"); | ||
} | ||
callback(undefined, subnetsDescription.Subnets.map(subnet => subnet.SubnetId)); | ||
callback(undefined, subnetsDescription.Subnets.filter(subnet => subnet.DefaultForAz).map(subnet => subnet.SubnetId)); | ||
}); | ||
@@ -121,0 +121,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27893
571