├── .github └── workflows │ └── release-announcement.yml └── Readme.md /.github/workflows/release-announcement.yml: -------------------------------------------------------------------------------- 1 | name: Release announcement 2 | 3 | on: 4 | release: 5 | types: 6 | - created 7 | 8 | jobs: 9 | notify_discord: 10 | runs-on: ubuntu-latest 11 | 12 | name: Send discord message 13 | steps: 14 | - uses: nhevia/discord-styled-releases@v1.2.3 15 | with: 16 | webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} 17 | webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | eagle-eye 2 | ========= 3 | 4 | eagle-eye is a visualization tool which can generate an architecture diagram from terraform files. 5 | 6 | The tool can be used locally or in a CI/CD pipeline to generate a diagram of your cloud infrastructure. 7 | 8 | ## 🚧 Project Status: Suspended 🚧 9 | 10 | > Hi everyone, 11 | > 12 | > Unfortunately, due to priority change, we decided to pause the project eagle-eye to fully focus on Brainboard.co. 13 | > We will get back to it one day but for now, we will shut down the infrastructure. 14 | > 15 | > Keep following us via Brainboard 🙂 16 | > 17 | --------------------------------------------------------------------------------