Admiral
Sources

Retrieve source outputs

GET
/api/v1/sources/{source_id}/outputs

Only meaningful for Terraform modules, which declare formal output blocks. Helm charts, Kustomize, and raw manifests do not have formal outputs -- workload component outputs are user-declared, not discovered.

This operation queries the external system in real time and may take several seconds.

Scope: source:read

Authorization

bearerAuth
AuthorizationBearer <token>

Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer adm_pat_...

In: header

Path Parameters

source_id*source_id

Unique identifier of the source to inspect (UUID).

Formatuuid

Query Parameters

version?version

The version to inspect. Required.

Length1 <= length

Response Body

application/json

curl -X GET "https://admiral.example.com/api/v1/sources/497f6eca-6276-4993-bfeb-53cbbbba6f08/outputs"
{  "outputs": [    {      "name": "string",      "type": "string",      "description": "string",      "sensitive": true    }  ],  "resolved_version": "string"}