Skip to main content
OpenOps integrates with Cloudability to automate receiving and managing cloud resource usage recommendations.

Actions

OpenOps provides four actions for interacting with Cloudability: All Cloudability actions are based on the Cloudability API and require configuring a Cloudability connection with your API key and an API URL. The following are the four actions available in the Cloudability block.

Get Recommendations

Retrieves cost optimization recommendations from Cloudability with extensive filtering options:
  • Vendor Type: AWS, Azure, GCP, or Containers
  • Recommendation Type: Dynamic dropdown based on selected vendor
  • Look-Back Period: Last 10 or 30 days
  • Cost Basis: On-Demand or Effective pricing
  • Recommendations Status: Show only active, show all (including snoozed), or show only snoozed
  • Limit: Optional maximum number of recommendations to return
  • Additional Filters: Custom filters per Cloudability’s rightsizing API documentation
Below is a sample output that this step returns when configured to request active AWS EC2 recommendations with a 10-day look-back period:

Snooze Recommendations

Temporarily dismisses specific recommendations:
  • Vendor Type: AWS, Azure, GCP, or Containers
  • Recommendation Type: Dynamic dropdown based on vendor
  • Account ID: The cloud account ID
  • Resource IDs: Array of resource IDs to snooze
  • Snooze Until: Date in yyyy-MM-dd format, or “never” for indefinite snoozing

Unsnooze Recommendations

Reactivates previously snoozed recommendations:
  • Vendor Type: AWS, Azure, GCP, or Containers
  • Recommendation Type: Dynamic dropdown based on vendor
  • Account ID: The cloud account ID
  • Resource IDs: Array of resource IDs to unsnooze

Custom API Call

Make direct calls to any Cloudability API endpoint:
  • URL: Dynamic endpoint selection
  • Method: GET, POST, PATCH, PUT, DELETE, or HEAD
  • Headers: Optional (authorization auto-injected)
  • Query Parameters: Optional
  • Body: Optional JSON payload
  • Timeout: Configurable timeout in seconds
  • No Error on Failure: Optional failsafe flag

Designing a workflow

A typical Cloudability workflow starts with collecting active recommendations using the Get Recommendations action, then iterating through them, determining the owner of the affected resource, and deciding whether to request an action on the resource from the owner. If the owner approves the action, the workflow can perform a step to remediate the resource using the actions available for the cloud platforms OpenOps supports. Below is a description of typical patterns that can be implemented in your Cloudability workflow.

Owner mapping

Cloudability recommendations often need to be routed to the appropriate resource owners for review and action. OpenOps workflows can help you map cloud resources to their owners using tag values in the tagMappings array that the Get Recommendations action returns. Subsequent steps of your workflow may add owners or departments in the preconfigured Tag-owner mapping table. If your Cloudability instance returns specific owners, your workflow can add their contacts to the Tag-owner mapping table automatically. If it doesn’t, you can fill the table manually once for each business unit to mamke sure that subsequent workflow runs know which team member should receive notifications or approval requests. This ensures that rightsizing, idle resource cleanup, or commitment purchase recommendations reach the people who can actually act on them. For an example of implementing owner mapping as a separate workflow, see the Creating a workflow to fill the project-owner mapping table in the CloudHealth integration guide. While the guide covers a different FinOps product, the principles of owner mapping apply to your Cloudability workflows as well.

Recommendation tracking using OpenOps tables and states

Rather than acting on every recommendation once and then forgetting about its status, your OpenOps workflow can log Cloudability recommendations to the preconfigured Opportunities table for centralized tracking and status management. Workflows using the Get Recommendations action can create or update table records with details like estimated savings, resource IDs, recommendation types, and current status (Created, Under Review, Dismissed, Snoozed). This approach prevents duplicate notifications, provides audit trails, and enables reporting on realized vs. unrealized savings across your organization. Learn how to implement opportunity tracking by following the CloudHealth recommendation logging workflow.

Handling recommendations via Slack

For recommendations requiring human judgment, OpenOps can send interactive Slack messages that allow resource owners to approve, dismiss, or snooze optimization opportunities directly from Slack. After retrieving recommendations with Get Recommendations, workflows can use owner mapping to identify the appropriate Slack user, then send a Slack message using the Request Action with buttons for different responses. Based on the user’s selection, the workflow can call Snooze Recommendations to temporarily dismiss false positives, update the Opportunities table to track decisions, or proceed with automated remediation actions. See Send a Slack notification with action buttons in the CloudHealth guide for implementation details.