Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turbot/flowpipe-mod-gcp-thrifty
Run pipelines to detect and correct GCP resources that are unused and underutilized to optimize costs.
https://github.com/turbot/flowpipe-mod-gcp-thrifty
cost-optimization flowpipe flowpipe-mod gcp hacktoberfest hcl low-code
Last synced: about 1 month ago
JSON representation
Run pipelines to detect and correct GCP resources that are unused and underutilized to optimize costs.
- Host: GitHub
- URL: https://github.com/turbot/flowpipe-mod-gcp-thrifty
- Owner: turbot
- License: apache-2.0
- Created: 2024-05-14T10:01:38.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T14:44:25.000Z (2 months ago)
- Last Synced: 2024-10-23T09:22:13.185Z (2 months ago)
- Topics: cost-optimization, flowpipe, flowpipe-mod, gcp, hacktoberfest, hcl, low-code
- Language: HCL
- Homepage: https://hub.flowpipe.io/mods/turbot/gcp_thrifty
- Size: 297 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# GCP Thrifty Mod for Flowpipe
Pipelines to detect and correct misconfigurations leading to GCP savings opportunities.
## Documentation
- **[Pipelines →](https://hub.flowpipe.io/mods/turbot/gcp_thrifty/pipelines)**
## Getting Started
### Requirements
Docker daemon must be installed and running. Please see [Install Docker Engine](https://docs.docker.com/engine/install/) for more information.
### Installation
Download and install Flowpipe (https://flowpipe.io/downloads) and Steampipe (https://steampipe.io/downloads). Or use Brew:
```sh
brew install turbot/tap/flowpipe
brew install turbot/tap/steampipe
```Install the GCP plugin with [Steampipe](https://steampipe.io):
```sh
steampipe plugin install gcp
```Steampipe will automatically use your default GCP credentials. Optionally, you can [setup multiple accounts](https://hub.steampipe.io/plugins/turbot/gcp#multi-account-connections) or [customize GCP credentials](https://hub.steampipe.io/plugins/turbot/gcp#configuring-gcp-credentials).
Create a `connection_import` resource to import your Steampipe GCP connections:
```sh
vi ~/.flowpipe/config/gcp.fpc
``````hcl
connection_import "gcp" {
source = "~/.steampipe/config/gcp.spc"
connections = ["*"]
}
```For more information on importing connections, please see [Connection Import](https://flowpipe.io/docs/reference/config-files/connection_import).
For more information on connections in Flowpipe, please see [Managing Connections](https://flowpipe.io/docs/run/connections).
Clone the mod:
```sh
mkdir gcp-thrifty
cd gcp-thrifty
git clone [email protected]:turbot/flowpipe-mod-gcp-thrifty.git
```Install the dependencies:
```sh
flowpipe mod install
```### Configure Variables
Several pipelines have [input variables](https://flowpipe.io/docs/build/mod-variables#input-variables) that can be configured to better match your environment and requirements.
Each variable has a default defined in its source file, e.g, `logging/logging_buckets_with_higher_retention_period.fp` (or `variables.fp` for more generic variables), but these can be overwritten in several ways:
The easiest approach is to setup your vars file, starting with the sample:
```sh
cp flowpipe.fpvars.example flowpipe.fpvars
vi flowpipe.fpvarsflowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size --var-file=flowpipe.fpvars
```Alternatively, you can pass variables on the command line:
```sh
flowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size --var=compute_disks_exceeding_max_size=100
```Or through environment variables:
```sh
export FP_VAR_compute_disks_exceeding_max_size=100
flowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size
```For more information, please see [Passing Input Variables](https://flowpipe.io/docs/build/mod-variables#passing-input-variables)
### Running Detect and Correct Pipelines
To run your first detection, you'll need to ensure your Steampipe server is up and running:
```sh
steampipe service start
```To find your desired detection, you can filter the `pipeline list` output:
```sh
flowpipe pipeline list | grep "detect_and_correct"
```Then run your chosen pipeline:
```sh
flowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size
```This will then run the pipeline and depending on your configured running mode; perform the relevant action(s), there are 3 running modes:
- Wizard
- Notify
- Automatic#### Wizard
This is the `default` running mode, allowing for a hands-on approach to approving changes to resources by prompting for [input](https://flowpipe.io/docs/build/input) for each detected resource.Whilst the out of the box default is to run the workflow directly in the terminal. You can use Flowpipe [server](https://flowpipe.io/docs/run/server) and [external integrations](https://flowpipe.io/docs/build/input#create-an-integration) to prompt in `http`, `slack`, `teams`, etc.
#### Notify
This mode as the name implies is used purely to report detections via notifications either directly to your terminal when running in client mode or via another configured [notifier](https://flowpipe.io/docs/reference/config-files/notifier) when running in server mode for each detected resource.To run in `notify` mode, you will need to set the `approvers` variable to an empty list `[]` and ensure the resource-specific `default_action` variable is set to `notify`, either in your fpvars file
```hcl
# example.fpvars
approvers = []
compute_disks_exceeding_max_size_default_action = "notify"
```or pass the `approvers` and `default_action` arguments on the command-line.
```sh
flowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size --arg='default_action=notify' --arg='approvers=[]'
```#### Automatic
This behavior allows for a hands-off approach to remediating resources.To run in `automatic` mode, you will need to set the `approvers` variable to an empty list `[]` and the the resource-specific `default_action` variable to one of the available options.
```hcl
# example.fpvars
approvers = []
compute_disks_exceeding_max_size_default_action = "snapshot_and_delete_disk"
```or pass the `approvers` and `default_action` argument on the command-line.
```sh
flowpipe pipeline run detect_and_correct_compute_disks_exceeding_max_size --arg='approvers=[] --arg='default_action=snapshot_and_delete_disk'
```To further enhance this approach, you can enable the pipelines corresponding [query trigger](#running-query-triggers) to run completely hands-off.
### Running Query Triggers
> Note: Query triggers require Flowpipe running in [server](https://flowpipe.io/docs/run/server) mode.
Each `detect_and_correct` pipeline comes with a corresponding [Query Trigger](https://flowpipe.io/docs/flowpipe-hcl/trigger/query), these are _disabled_ by default allowing for you to _enable_ and _schedule_ them as desired.
Let's begin by looking at how to set-up a Query Trigger to automatically resolve our Compute disks that have exceeded the maximum allowed size.
Firsty, we need to update our `example.fpvars` file to add or update the following variables - if we want to run our remediation `hourly` and automatically `apply` the corrections:
```hcl
# example.fpvars
compute_disks_exceeding_max_size_trigger_enabled = true
compute_disks_exceeding_max_size_trigger_schedule = "1h"
compute_disks_exceeding_max_size_default_action = "snapshot_and_delete_disk"
```Now we'll need to start up our Flowpipe server:
```sh
flowpipe server --var-file=example.fpvars
```This will activate every hour and detect Compute Snapshots exceeding maximum age and apply the corrections without further interaction!
## Open Source & Contributing
This repository is published under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0). Please see our [code of conduct](https://github.com/turbot/.github/blob/main/CODE_OF_CONDUCT.md). We look forward to collaborating with you!
[Flowpipe](https://flowpipe.io) and [Steampipe](https://steampipe.io) are products produced from this open source software, exclusively by [Turbot HQ, Inc](https://turbot.com). They are distributed under our commercial terms. Others are allowed to make their own distribution of the software, but cannot use any of the Turbot trademarks, cloud services, etc. You can learn more in our [Open Source FAQ](https://turbot.com/open-source).
## Get Involved
**[Join #flowpipe on Slack →](https://turbot.com/community/join)**
Want to help but don't know where to start? Pick up one of the `help wanted` issues:
- [Flowpipe](https://github.com/turbot/flowpipe/labels/help%20wanted)
- [GCP Thrifty Mod](https://github.com/turbot/flowpipe-mod-gcp-thrifty/labels/help%20wanted)