- Terraform Enterprise
- 1.1.x (latest)
- 1.0.x
- v202507-1
- v202506-1
- v202505-1
- v202504-1
- v202503-1
- v202502-2
- v202502-1
- v202501-1
- v202411-2
- v202411-1
- v202410-1
- v202409-2
- v202409-1
- v202408-1
- No versions of this document exist before v202408-1. Click below to redirect to the version homepage.
- v202407-1
- v202406-1
- v202405-1
- v202404-2
- v202404-1
- v202402-2
- v202402-1
- v202401-2
- v202401-1
- v202312-1
- v202311-1
- v202310-1
- v202309-1
- v202308-1
- v202307-1
- v202306-1
- v202305-2
- v202305-1
- v202304-1
- v202303-1
- v202302-1
- v202301-2
- v202301-1
- v202212-2
- v202212-1
- v202211-1
- v202210-1
- v202209-2
- v202209-1
- v202208-3
- v202208-2
- v202208-1
- v202207-2
- v202207-1
- v202206-1
Assessment Results API
An Assessment Result is the summary record of an instance of health assessment. HCP Terraform can perform automatic health assessments in a workspace to assess whether its real infrastructure matches the requirements defined in its Terraform configuration. Refer toHealth for more details.
Show Assessment Result
Any user with read access to a workspace can retrieve assessment results for the workspace.
GET api/v2/assessment-results/:assessment_result_id
| Parameter | Description |
|---|---|
:assessment_result_id | The assessment result ID |
Sample Request
$ curl \ --header "Authorization: Bearer $TOKEN" \ --header "Content-Type: application/vnd.api+json" \ https://app.terraform.io/api/v2/assessment-results/asmtres-cHh5777xmSample Response
{ "id": "asmtres-UG5rE9L1373hMYMA", "type": "assessment-results", "data": { "attributes": { "drifted": true, "succeeded": true, "error-msg": null, "created-at": "2022-07-02T22:29:58+00:00", }, "links": { "self": "/api/v2/assessment-results/asmtres-UG5rE9L1373hMYMA/" "json-output":"/api/v2/assessment-results/asmtres-UG5rE9L1373hMYMA/json-output" "json-schema":"/api/v2/assessment-results/asmtres-UG5rE9L1373hMYMA/json-schema" "log-output":"/api/v2/assessment-results/asmtres-UG5rE9L1373hMYMA/log-output" } }}Retrieve the JSON output from the assessment execution
The following endpoints retrieve files documenting the plan, schema, and logged runtime associated with the specified assessment result. They provide complete context for an assessment result. The responses do not adhere to JSON API spec.
You cannot access these endpoints withorganization tokens. You must access them with auser token orteam token that has admin level access to the workspace. Refer toPermissions for details.
JSON Plan
The following endpoint returns the JSON plan output associated with the assessment result.
GET api/v2/assessment-results/:assessment_result_id/json-output
Sample Request
$ curl \ --header "Authorization: Bearer $TOKEN" \ --header "Content-Type: application/vnd.api+json" \ https://app.terraform.io/api/v2/assessment-results/asmtres-cHh5777xm/json-outputJSON Schema file
The following endpoint returns the JSONprovider schema associated with the assessment result.
GET api/v2/assessment-results/:assessment_result_id/json-schema
Sample Request
$ curl \ --header "Authorization: Bearer $TOKEN" \ --header "Content-Type: application/vnd.api+json" \ https://app.terraform.io/api/v2/assessment-results/asmtres-cHh5777xm/json-schemaJSON Log Output
The following endpoint returns Terraform JSON log output.
GET api/v2/assessment-results/assessment_result_id/log-output
Sample Request
$ curl \ --header "Authorization: Bearer $TOKEN" \ --header "Content-Type: application/vnd.api+json" \ https://app.terraform.io/api/v2/assessment-results/asmtres-cHh5777xm/log-output