Amazon Elastic Load Balancing · Arazzo Workflow

Amazon Elastic Load Balancing Audit Load Balancer Configuration

Version 1.0.0

Walk a load balancer's listeners and target groups to inventory its routing.

1 workflow 4 source APIs 1 provider
View Spec View on GitHub Amazon Web ServicesHigh AvailabilityLoad BalancingNetworkingScalabilityArazzoWorkflows

Provider

amazon-elastic-load-balancing

Workflows

audit-load-balancer-configuration
Inventory a load balancer's listeners, target groups, and target health.
Chains describeLoadBalancers, describeListeners, describeTargetGroups, and describeTargetHealth so the full routing topology of a named load balancer is gathered for review.
4 steps inputs: loadBalancerName outputs: listeners, loadBalancerArn, stateCode, targetGroups, targetHealthDescriptions
1
findLoadBalancer
Resolve the load balancer ARN from its name.
2
listListeners
List the listeners attached to the load balancer.
3
listTargetGroups
List the target groups attached to the load balancer.
4
listTargetHealth
Read the health of the members in the first attached target group.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Elastic Load Balancing Audit Load Balancer Configuration
  summary: Walk a load balancer's listeners and target groups to inventory its routing.
  description: >-
    Produces a read-only inventory of a load balancer's routing configuration.
    It resolves the load balancer by name, lists its listeners, reads the
    target groups attached to it, and reads the health of those target groups'
    members so an operator can audit the full topology in a single run. Each
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description. The Elastic Load
    Balancing v2 API uses the AWS query protocol, so every operation is a GET
    whose inputs are carried as query parameters rather than a request body.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-600.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: amazon-elastic-load-balancing-load-balancers-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: listenersApi
  url: ../openapi/amazon-elastic-load-balancing-listeners-api-openapi.yml
  type: openapi
- name: loadBalancersApi
  url: ../openapi/amazon-elastic-load-balancing-load-balancers-api-openapi.yml
  type: openapi
- name: targetGroupsApi
  url: ../openapi/amazon-elastic-load-balancing-target-groups-api-openapi.yml
  type: openapi
- name: targetsApi
  url: ../openapi/amazon-elastic-load-balancing-targets-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-load-balancer-configuration
  summary: Inventory a load balancer's listeners, target groups, and target health.
  description: >-
    Chains describeLoadBalancers, describeListeners, describeTargetGroups, and
    describeTargetHealth so the full routing topology of a named load balancer
    is gathered for review.
  inputs:
    type: object
    required:
    - loadBalancerName
    properties:
      loadBalancerName:
        type: string
        description: The name of the load balancer to audit.
  steps:
  - stepId: findLoadBalancer
    description: Resolve the load balancer ARN from its name.
    operationId: describeLoadBalancers
    parameters:
    - name: Names
      in: query
      value: $inputs.loadBalancerName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      loadBalancerArn: $response.body#/loadBalancers/0/loadBalancerArn
      stateCode: $response.body#/loadBalancers/0/state/code
  - stepId: listListeners
    description: List the listeners attached to the load balancer.
    operationId: describeListeners
    parameters:
    - name: LoadBalancerArn
      in: query
      value: $steps.findLoadBalancer.outputs.loadBalancerArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      listeners: $response.body#/listeners
  - stepId: listTargetGroups
    description: List the target groups attached to the load balancer.
    operationId: describeTargetGroups
    parameters:
    - name: LoadBalancerArn
      in: query
      value: $steps.findLoadBalancer.outputs.loadBalancerArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      targetGroups: $response.body#/targetGroups
      firstTargetGroupArn: $response.body#/targetGroups/0/targetGroupArn
  - stepId: listTargetHealth
    description: Read the health of the members in the first attached target group.
    operationId: describeTargetHealth
    parameters:
    - name: TargetGroupArn
      in: query
      value: $steps.listTargetGroups.outputs.firstTargetGroupArn
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      targetHealthDescriptions: $response.body#/targetHealthDescriptions
  outputs:
    loadBalancerArn: $steps.findLoadBalancer.outputs.loadBalancerArn
    stateCode: $steps.findLoadBalancer.outputs.stateCode
    listeners: $steps.listListeners.outputs.listeners
    targetGroups: $steps.listTargetGroups.outputs.targetGroups
    targetHealthDescriptions: $steps.listTargetHealth.outputs.targetHealthDescriptions

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amazon-elastic-load-balancing-audit-load-balancer-configuration-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.