An open API service indexing awesome lists of open source software.

https://github.com/nickheap2/yortal

Inventory AWS APIs
https://github.com/nickheap2/yortal

apigateway aws

Last synced: 3 months ago
JSON representation

Inventory AWS APIs

Awesome Lists containing this project

README

          

# Yortal - inventory AWS Gateway APIs
Requires a config.json file in the root that looks like this:
```
{
"swaggerHubToken": "your SwaggerHub api token",
"swaggerHubOwner": "your SwaggerHub owner",
"swaggerFetchSpecs": false,
"getConcurrency": false,
"accounts": [
{
"name": "aws-account-name",
"disabled": false,
"credentials": {
"accessKeyId": "account access key id",
"secretAccessKey": "account secret access key",
"sessionToken": "account session token"
},
"regions": [
"eu-west-2",
"us-east-1"
]
},
...
]
}
```

Fetching specs from SwaggerHub is slow and you may get rate limited so it is off by default.
Getting lambda concurrency is also off by default as it has delays to prevcnt it getting rate limited.

## Setup

```
npm install
```

## Run

```
npm start
```