Admin Terraform Versions API
Terraform Enterprise feature: The admin API is exclusive to Terraform Enterprise, and can only be used by the admins and operators who install and maintain their organization's Terraform Enterprise instance.
These API endpoints are available in Terraform Enterprise as of version 201807-1.
The Terraform Versions Admin API lets site administrators manage which versions of Terraform are available to the Terraform Cloud users within their enterprise.
List all Terraform versions
GET /api/v2/admin/terraform-versions
This endpoint lists all known versions of Terraform.
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "terraform-versions" ) | Successfully listed Terraform versions |
404 | JSON API error object | Client is not an administrator. |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling doesn't automatically encode URLs.
Parameter | Description |
---|---|
filter[version] | Optional. A query string. This will find an exact Terraform version matching the version queried. This option takes precedence over search queries. This option is available in Terraform Enterprise v202201-2 or later. |
search[version] | Optional. A search query string. This will search for Terraform versions matching the version number queried. This option is available in Terraform Enterprise v202201-2 or later. |
page[number] | Optional. If omitted, the endpoint will return the first page. |
page[size] | Optional. If omitted, the endpoint will return 20 Terraform versions per page. |
Sample Request
Sample Response
Create a Terraform version
POST /admin/terraform-versions
Status | Response | Reason |
---|---|---|
201 | JSON API document (type: "terraform-versions" ) | The Terraform version was successfully created |
404 | JSON API error object | Client is not an administrator |
422 | JSON API error object | Validation errors |
Request Body
This POST endpoint requires a JSON object with the following properties as a request payload.
Properties without a default value are required.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "terraform-versions" | |
data.attributes.version | string | A semantic version string in N.N.N or N.N.N-bundleName format (e.g. "0.11.0" , "0.12.20-beta1" .) | |
data.attributes.url | string | The URL where a ZIP-compressed 64-bit Linux binary of this version can be downloaded | |
data.attributes.sha | string | The SHA-256 checksum of the compressed Terraform binary | |
data.attributes.deprecated | bool | false | Whether or not this version of Terraform is deprecated |
data.attributes.deprecated-reason | string | null | Additional context about why a version of Terraform is deprecated. Field is null unless deprecated is true. |
data.attributes.official | bool | false | Whether or not this is an official release of Terraform |
data.attributes.enabled | bool | true | Whether or not this version of Terraform is enabled for use in Terraform Cloud |
data.attributes.beta | bool | false | Whether or not this version of Terraform is a beta pre-release |
Sample Payload
Sample Request
Sample Response
Show a Terraform version
GET /api/v2/admin/terraform-versions/:id
Parameter | Description |
---|---|
:id | The ID of the Terraform version to show |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "terraform-versions" ) | The request was successful |
404 | JSON API error object | Terraform version not found, or client is not an administrator |
Sample Request
Sample Response
Update a Terraform version
PATCH /admin/terraform-versions/:id
Parameter | Description |
---|---|
:id | The ID of the Terraform version to update |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "terraform-versions" ) | The Terraform version was successfully updated |
404 | JSON API error object | Terraform version not found, or client is not an administrator |
422 | JSON API error object | Validation errors |
Request Body
This PATCH endpoint requires a JSON object with the following properties as a request payload.
Properties without a default value are required.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "terraform-versions" | |
data.attributes.version | string | (previous value) | A semantic version string in N.N.N or N.N.N-bundleName format (e.g. "0.11.0" , "0.12.20-beta1" .) |
data.attributes.url | string | (previous value) | The URL where a ZIP-compressed 64-bit Linux binary of this version can be downloaded |
data.attributes.sha | string | (previous value) | The SHA-256 checksum of the compressed Terraform binary |
data.attributes.official | bool | (previous value) | Whether or not this is an official release of Terraform |
data.attributes.deprecated | bool | (previous value) | Whether or not this version of Terraform is deprecated |
data.attributes.deprecated-reason | string | (previous value) | Additional context about why a version of Terraform is deprecated. |
data.attributes.enabled | bool | (previous value) | Whether or not this version of Terraform is enabled for use in Terraform Cloud |
data.attributes.beta | bool | (previous value) | Whether or not this version of Terraform is a beta pre-release |
Sample Payload
Sample Request
Sample Response
Delete a Terraform version
DELETE /admin/terraform-versions/:id
This endpoint removes a Terraform version from Terraform Cloud. Versions cannot be removed if they are labeled as official versions of Terraform or if there are workspaces using them.
Parameter | Description |
---|---|
:id | The ID of the Terraform version to delete |
Status | Response | Reason |
---|---|---|
204 | Empty response | The Terraform version was successfully deleted |
404 | JSON API error object | Terraform version not found, or client is not an administrator |
422 | JSON API error object | The Terraform version cannot be removed (it is official or is in use) |
Sample Request