Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brettski/awsnode
A collection of functions working with the aws node sdk
https://github.com/brettski/awsnode
Last synced: 13 days ago
JSON representation
A collection of functions working with the aws node sdk
- Host: GitHub
- URL: https://github.com/brettski/awsnode
- Owner: brettski
- Created: 2017-03-12T21:08:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T16:17:03.000Z (about 3 years ago)
- Last Synced: 2024-11-19T05:14:19.630Z (2 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# awsnode
A collection of functions from working with the aws node sdk## setup
To setup set aws keys in ~/.aws/credentialsTypical format:
```
[default]
aws_access_key_id =
aws_secret_access_key =
```### orphanSg.js
finds ec2 orphaned security groups. Checking which ones are not in use by an instance.### orphanVpc.js
finds ec2 orphaned VPC's. Checking which ones are not in use by an instance.### certcheck.js
By elastic IP or Instance IP creates a list of accessible certificates with valid dates, etc.
```JavaScript
{ ip: '10.0.0.20',
commonName: '*.example.com',
subjectAltName: 'DNS:*.example.com, DNS:example.com',
validFrom: 'May 17 20:16:03 2016 GMT',
validTo: 'May 18 20:16:03 2017 GMT',
serialNumber: '0BF36A7ACAF1117438623EF0',
note: null }
```