Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devopsartfactory/redhawk
Open source infrastructure audit and management tool.
https://github.com/devopsartfactory/redhawk
Last synced: about 1 month ago
JSON representation
Open source infrastructure audit and management tool.
- Host: GitHub
- URL: https://github.com/devopsartfactory/redhawk
- Owner: DevopsArtFactory
- License: apache-2.0
- Created: 2020-10-06T23:50:23.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-29T04:26:07.000Z (over 3 years ago)
- Last Synced: 2024-08-24T09:57:35.612Z (4 months ago)
- Language: Go
- Homepage:
- Size: 26.8 MB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# redhawk
redhawk is an open source resource audit tool. When you want to get all list of infrastructure resources in cloud provider,
then you could use redhawk to easily get list of all resources. For better security, it is important to check infrastructures.## Important Notice
- Currently redhawk only supports AWS resources.## Install
* macOS user
```bash
# Using cURL
curl -Lo redhawk https://devopsartfactory.s3.ap-northeast-2.amazonaws.com/redhawk/releases/latest/redhawk-darwin-amd64
sudo install redhawk /usr/local/bin/
redhawk version# Using brew
brew tap devopsartfactory/devopsart
brew install redhawk
redhawk version
```* Linux user
```bash
curl -Lo redhawk https://devopsartfactory.s3.ap-northeast-2.amazonaws.com/redhawk/releases/latest/redhawk-linux-amd64
sudo install redhawk /usr/local/bin/
redhawk version
```* Windows user
- file: https://devopsartfactory.s3.ap-northeast-2.amazonaws.com/redhawk/releases/latest/redhawk-windows-amd64.exe
- Simply download it and place it in your PATH as redhawk.exe.
## Auto completion
- zsh
- This is recommended.
```bash
$ echo "source <(redhawk completion zsh)" >> ~/.zshrc
$ source ~/.zshrc
```- bash
```bash
$ echo "source <(redhawk completion bash)" >> ~/.bash_rc or ~/.bash_profile
$ source ~/.bashrc
```## Commands
```bash
Opensource cloud resources audit and management toolchecking all resources in cloud provider
list list infrastructure resources in AWSOther Commands:
completion Output shell completion for the given shell (bash or zsh)
version Print the version informationUsage:
redhawk [flags] [options]Use "redhawk --help" for more information about a given command.
```## Contribution Guide
- Check [CONTRIBUTING.md](CONTRIBUTING.md)