Cost Optimization Strategies
Cloud costs can spiral out of control if not actively managed. Firefly, while primarily an asset management and IaC tool, also provides features and insights that help with FinOps (Cloud Financial Management). By identifying waste and suggesting optimizations, Firefly enables you to reduce unnecessary spend. Here are best practices for cost optimization using Firefly:
Identifying Cloud Waste & Cost Anomalies
The first step to cost optimization is finding where you're wasting money. Common culprits include idle compute instances, forgotten storage volumes, over-provisioned resources, or resources running in expensive regions unnecessarily. Firefly tackles this by scanning for unused and idle resources across your environment.
For example, Firefly will detect unattached EBS volumes, unused Elastic IPs, VMs that have been stopped for a long time, or under-utilized Kubernetes nodes. These are flagged (often in the Cloud Waste section of the dashboard or via specific policies). Make it a habit to review the Cloud Waste report regularly. Firefly may list things like "15 unattached volumes – estimated $300/month could be saved by removing these" or "10 underutilized EC2 instances running at <10% CPU".
Once identified, Firefly doesn't just list them – it provides remediation suggestions. For instance, for an unattached volume, the suggestion is simply to delete it to eliminate cost. For an idle VM, the suggestion might be to terminate or downsize it.
You can even set up Firefly policies for cost anomalies, e.g., a rule that checks if any resource's cost increased by >50% month-over-month (for cloud providers where Firefly has cost info). Firefly integrates some cost metrics and can do basic anomaly detection – using machine learning to spot unusual spending patterns and flag them. If Firefly finds, say, a sudden spike in data transfer costs in Azure or a huge increase in GCP BigQuery usage, it will alert you (cost anomaly).
Combine Firefly with cloud provider cost alerts for comprehensive coverage. The key is visibility: Firefly puts these waste candidates right in front of you, whereas previously you might not notice an unattached $20 disk or two until months of waste. A best practice is to assign someone (FinOps or DevOps) to triage Firefly's waste findings at least monthly and create a cleanup plan.
Automated Rightsizing Recommendations
After eliminating outright waste, the next level is rightsizing – ensuring that the resources in use are of the appropriate size and class for their workload, so you're not overpaying for capacity you don't need.
Firefly can assist indirectly in rightsizing by leveraging data from integrated monitoring tools (like Datadog or New Relic) combined with its inventory knowledge. For example, Firefly knows the instance type and size of every VM. If integrated with Datadog, it might also retrieve utilization metrics. With that, Firefly could highlight that a certain EC2 instance is only using 5% of its CPU and could be downgraded to a smaller instance type.
While Firefly's core offering is not a full performance monitoring tool, it sets the stage by identifying candidates (like "underutilized" flag). Many teams use Firefly's export or API to get a list of resources and then cross-reference with CloudWatch or Datadog data for rightsizing.
However, Firefly does mention "automated rightsizing recommendations" as a capability: this might mean it has built-in logic for common services (like AWS EC2, Azure VM, GCP Compute) to suggest a smaller size if usage is low, or to schedule turning it off at certain hours. If available, enable those recommendations in Firefly's insights. They would appear in the Insights or Cloud Waste view.
For example, Firefly could show "Instance i-123456 (m5.2xlarge) is underutilized; consider resizing to m5.large to save ~$100/month." You can then take action in your IaC to change that instance type (and thanks to Firefly, you know exactly where in Terraform it is defined, since Firefly linked it to code!).
Some rightsizing can even be automated: as a cautious approach, have Firefly open a Jira ticket for each rightsizing suggestion rather than auto-applying it, then have engineers assess. Over time, incorporate rightsizing into your pipeline – e.g., if Firefly suggests a smaller DB instance, perhaps adjust Terraform and see if performance is still fine.
Best Practices to Reduce Unnecessary Spend
Beyond specific tools, adopting certain practices with Firefly's help will reduce waste:
Tagging for Cost Allocation
Make sure all resources are tagged by environment, project, and owner. Firefly can enforce this via tag policies and guardrails. Proper tagging doesn't directly save cost but makes it clear who owns what, so you can hold teams accountable for their spend. Firefly's inventory and policy engine will highlight any untagged resources (which often correlate with orphaned/waste resources).
Scheduled Resources
For dev/test environments, enforce schedules (turn off at night/weekends). Firefly could be used to detect resources running outside approved hours. While Firefly doesn't do scheduling itself, it can integrate with tools like Torq (via webhook) to trigger automated shutdowns. A policy could be "Non-production VM running during off-hours = violation", which then notifies or triggers a script to stop it.
Delete Old Snapshots / Backups
Cloud tends to accumulate old snapshots or images that cost money. Firefly's inventory will include snapshots as assets (if supported) and you can see their creation dates. Use Firefly to find snapshots older than X days that aren't needed and remove them (either manually or via a codify+delete workflow).
Identify Orphaned Resources
Orphans are pieces of infrastructure left over, for instance a load balancer with no instances, or a disk whose VM was deleted. These often fly under radar. Firefly's relationship mapping can help spot orphans – e.g., a load balancer asset with no linked servers might indicate it's unused. Similarly, a security group not attached to any instance. Cleaning these up reduces clutter and sometimes cost (some AWS ALBs cost money even if not used).
Use of Latest Generation and Cost-Effective Services
Firefly's inventory can be filtered by instance family. Perhaps you discover many old generation instances (like t2 series instead of t3). Upgrading to newer can yield better performance per cost. Firefly doesn't automatically tell you "use newer instance type" but by having everything listed, you can analyze patterns. Also, use it to ensure things like S3 storage classes are appropriate (e.g., a bucket with rarely accessed data should be Glacier – Firefly can policy-check that lifecycle rules are set).
Anomaly Alerts
As mentioned, set up Firefly's cost anomaly detection if available or at least tag into cloud billing alerts. Firefly's unified view is useful when investigating an anomaly – if you get a cost spike alert, you can go to Firefly Inventory and search by that service to see if new resources were created that month, or if any usage metrics stand out.
Many Firefly users have reported significant savings by systematically removing waste. For example, one case study company reduced cloud waste by 83%, translating to $180,000 per year savings after implementing Firefly's recommendations. The key is that Firefly makes waste obvious and provides the means (via IaC and automation) to eliminate it quickly.
Integrate FinOps into IaC processes
The best practice is to integrate cost considerations into your IaC lifecycle. With Firefly's guardrails, you can set cost guardrails like "any change that increases monthly cost > $100 requires approval". This will catch expensive changes before they happen. You can also tag costly resources in Firefly and review if they are really needed. Having cost info available in the same place as assets and config (in Firefly) breaks down silos – engineers see cost impact alongside drift and policy. Over time, this drives more cost-efficient architectures.
Continuous Improvement
Use Firefly's data to feed back into design decisions. Perhaps Firefly shows you consistently that certain VMs are idle – maybe that function should move to serverless or a scale-to-zero service. Or Firefly highlights a lot of Kubernetes resource waste – maybe invest in an auto-scaler. The tool's insights can justify and prioritize engineering work that leads to cost reduction.
In summary, cost optimization with Firefly is about finding and fixing cloud waste and preventing unnecessary expenses. Firefly provides the detection (idle resources, anomalies) and in some cases the automated remediation (delete, downsize). By incorporating these practices, you can significantly lower your cloud bill without impacting performance. And since Firefly ties into your IaC, every cost-saving change is captured in code (so savings persist). It's a win-win: you free up budget and you make your infrastructure leaner and more efficient. Always remember: the cheapest cloud resource is the one you don't have – Firefly will help you identify those you can live without and safely remove them.
Last updated
Was this helpful?