API Exposure Guide

Retrieving Outputs

Fetch generated artifacts via REST API for CI/CD pipelines.

Retrieving Output Artifacts (REST API)

Output files (Terraform tfvars, Markdown reports, Kubernetes manifests) generated by the engine can be queried and downloaded.

  • GET /api/outputs/index: Returns a JSON array of available artifacts. Filterable via query parameters: origin_type, origin_name, and type.
  • GET /api/outputs/:resource_type/*name: Renders the artifact inline in the browser.
  • GET /api/outputs/:resource_type/*name/download: Forces the artifact to download as an attachment.

For a complete reference on generated outputs via REST see the Output Developer Guide.