ecoinfra is a powerful tool that helps you predict, assess, and reduce the environmental impact of your cloud infrastructure. By analyzing Terraform plan outputs, you can harness predictive sustainability into your cloud operations.
Visit our website at Eco-Infra.com to learn more about how we're revolutionizing eco-friendly cloud computing.
To start using the ecoinfra tool, follow these simple steps:
- Visit releases to download the ecoinfra tool for your supported operating system.
- Once the download is complete, locate the downloaded file on your computer.
- Open your web browser and go to Eco-Infra.com.
- Log in to your Eco-Infra account or create one if you don't have an account already.
- After logging in, navigate to your profile settings.
- In your profile settings, look for the "API Key" section.
- Click on "Create".
- A unique API key will be generated for you. Copy this key to your clipboard.
Run the tool in a supported CI environment
- name: Eco-Infra
uses: ecoinfra/[email protected]
with:
token: 'TOKEN'
project-name: 'my-project'
file: './terraform/state.json'
Run the tool from your command line interface (CLI) or terminal.
$ ecoinfra-PLATFORM --token {{Token}} --project-name {{Unique Project Name}} --file {{Plan JSON File}}
Example:
# Generate the Terraform JSON file
$ terraform plan -out=plan.out
# get the plan json
$ terraform show -json plan.out > plan.json
# or state json
$ terraform show -json terraform.tftate > state.json
# Analyze plan with ecoinfra
$ ecoinfra-PLATFORM --token c3dc55b6-78a0-43ad-2513-a751e76553de --project-name "Production Account" --file plan.json
# Analyze state with ecoinfra
$ ecoinfra-PLATFORM --token c3dc55b6-78a0-43ad-2513-a751e76553de --project-name "Production Account" --file state.json
--token
- Your unique API key.--project-name
- A unique name for your project.-fill
- Path to the Terraform plan JSON file.
--breakdown
- Show detailed resource breakdown.
Generate the plan file using Terraform:
terraform plan -out=plan.out
terraform show -json plan.out > plan.json
- AWS 🟢
- Azure 🔴
- GCP 🔴
- Terraform 🟢
- OpenTofu 🔴
- Pulumi 🔴
- CloudFormation 🔴
- Clone the repository.
- Install the dependencies.
- Build the tool
- Run the tool!
git clone [email protected]:eco-infra/ecoinfra.git
npm i
npm run package
# Generate the Terraform plan file
terraform plan -out=plan.out
terraform show -json plan.out > plan.json
# Run the tool
./build/ecoinfra-PLATFORM --token {{Token}} --project-name {{Unique Project Name}} -fill plan.json
Please read the contribution guidelines before contributing to the project. CONTRIBUTING.md