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.
- Host: GitHub
- URL: https://github.com/projectdiscovery/cloudlist-action
- Owner: projectdiscovery
- License: mit
- Created: 2021-06-29T22:57:57.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-11-06T09:43:23.000Z (over 3 years ago)
- Last Synced: 2025-04-28T16:14:46.239Z (about 1 year ago)
- Size: 10.7 KB
- Stars: 7
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
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 |