Admin Module Sharing 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.
Note:: This Admin Module Sharing API is deprecated and will be removed in a future release. Transition existing integrations with this API to the Registry Sharing API. Continue using the Admin Organizations API to configure global module sharing.
There are two ways to configure module sharing via the Admin API:
- This endpoint, which allows an organization to share modules with a specific list of other organizations.
- The update an organization endpoint, whose
data.attributes.global-module-sharing
property allows an organization to share modules with every organization in the instance.
Update an Organization's Module Consumers
This API endpoint is available in Terraform Enterprise as of version 202012-1.
PATCH /admin/organizations/:name/module-consumers
This endpoint sets the list of organizations that can use modules from the sharing organization's private registry. Sharing with specific organizations will automatically turn off global module sharing, which is configured with the update an organization endpoint (via the data.attributes.global-module-sharing
property).
Parameter | Description |
---|---|
:name | The name of the organization whose registry is being shared |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "module-partnerships" ) | The list of module consumers was successfully updated |
404 | JSON API error object | Organization not found or user unauthorized to perform action |
422 | JSON API error object | Malformed request body (missing attributes, wrong types, etc.) |
Request Body
This PATCH endpoint requires a JSON object with the following properties as a request payload.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "module-partnerships" | |
data.attributes.module-consuming-organization-ids | array[string] | A list of external ids for organizations that will be able to access modules in the producing organization's registry. These should have an org- prefix. |
Sample Payload
Sample Request
Sample Response