Admin OPA Versions API
Terraform Enterprise Only: 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.
The OPA Versions Admin API lets site administrators manage which versions of OPA are available to the HCP Terraform users within their enterprise.
List all OPA versions
GET /api/v2/admin/opa-versions
This endpoint lists all known versions of OPA.
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "opa-versions" ) | Successfully lists OPA 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 OPA version matching the version queried. This option takes precedence over search queries. |
search[version] | Optional. A search query string. This will search for OPA versions matching the version number queried. |
page[number] | Optional. If omitted, the endpoint will return the first page. |
page[size] | Optional. If omitted, the endpoint will return 20 OPA versions per page. |
Sample Request
Sample Response
Create an OPA version
POST /api/v2/admin/opa-versions
Status | Response | Reason |
---|---|---|
201 | JSON API document (type: "opa-versions" ) | The OPA 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 "opa-versions" . | |
data.attributes.version | string | A semantic version string in N.N.N or N.N.N-bundleName format ("0.11.0" or "0.12.20-beta1" ). | |
data.attributes.url | string | The URL where you can download the 64-bit Linux binary of this version. | |
data.attributes.sha | string | The SHA-256 checksum of the OPA binary. | |
data.attributes.deprecated | bool | false | Whether or not this version of OPA is deprecated. |
data.attributes.deprecated-reason | string | null | Additional context about why a version of OPA is deprecated. Field is null unless deprecated is true . |
data.attributes.official | bool | false | Whether or not this is an official release of OPA. |
data.attributes.enabled | bool | true | Whether or not this version of OPA is enabled for use in HCP Terraform. |
data.attributes.beta | bool | false | Whether or not this version of OPA is a beta pre-release. |
Sample Payload
Sample Request
Sample Response
Show an OPA version
GET /api/v2/admin/opa-versions/:id
Parameter | Description |
---|---|
:id | The ID of the OPA version to show. |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "opa-versions" ) | The request was successful, returns the OPA version with the matching ID. |
404 | JSON API error object | The request could not find a matching OPA version with the specified ID, or the client is not an administrator. |
Sample Request
Sample Response
Update an OPA version
PATCH /api/v2/admin/opa-versions/:id
Parameter | Description |
---|---|
:id | The ID of the OPA version to update. |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "opa-versions" ) | The OPA version was successfully updated. |
404 | JSON API error object | The request could not find a matching OPA version with the specified ID, or the 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 "opa-versions" . | |
data.attributes.version | string | (previous value) | A semantic version string in N.N.N or N.N.N-bundleName format ("0.11.0" or "0.12.20-beta1" ). |
data.attributes.url | string | (previous value) | The URL where you can download the 64-bit Linux binary of this version. |
data.attributes.sha | string | (previous value) | The SHA-256 checksum of the OPA binary. |
data.attributes.official | bool | (previous value) | Whether or not this is an official release of OPA. |
data.attributes.deprecated | bool | (previous value) | Whether or not this version of OPA is deprecated. |
data.attributes.deprecated-reason | string | (previous value) | Additional context about why a version of OPA is deprecated. |
data.attributes.enabled | bool | (previous value) | Whether or not this version of OPA is enabled for use in HCP Terraform. |
data.attributes.beta | bool | (previous value) | Whether or not this version of OPA is a beta pre-release. |
Sample Payload
Sample Request
Sample Response
Delete an OPA version
DELETE /api/v2/admin/opa-versions/:id
This endpoint removes an OPA version from HCP Terraform. You cannot remove officially labeled OPA versions or versions used by a workspace or policy set.
Parameter | Description |
---|---|
:id | The ID of the OPA version to delete. |
Status | Response | Reason |
---|---|---|
204 | Empty response | The OPA version was successfully deleted. |
404 | JSON API error object | The request could not find a matching OPA version with the specified ID, or the client is not an administrator. |
422 | JSON API error object | The request could not remove the OPA version because it is an official version or a workspace or policy set uses it. |
Sample Request