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

https://github.com/projectdiscovery/cloudlist-action

Cloudlist is a tool for listing Assets from multiple Cloud Providers.
https://github.com/projectdiscovery/cloudlist-action

Last synced: about 1 year ago
JSON representation

Cloudlist is a tool for listing Assets from multiple Cloud Providers.

Awesome Lists containing this project

README

          


cloudlist



Cloudlist Action makes it easy to orchestrate cloudlist with GitHub Action.

Example Usage
-----

**GitHub Action running `cloudlist`**

```yaml
- name: 🌥 Cloudlist - List them all
uses: projectdiscovery/cloudlist-action@main
with:
config: cloudlist-config.yaml
```

**Example workflow**: `.github/workflows/cloudlist.yml`

```yaml
name: 🌥 Cloudlist - List them all

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
cloudlist-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.17

- name: 🌥 Cloudlist - List them all
uses: projectdiscovery/cloudlist-action@main
with:
config: cloudlist-config.yaml
```

Available Inputs
------

| Key | Description | Required |
|----------|---------------------------------------|----------|
| `config` | Config file to use with cloudlist | true |
| `output` | File to save output result | false |
| `json` | Format to save of output file | false |
| `flags` | Additional cloudlist CLI flags to use | false |