Installing base workspace
Publishing and registering the base workspace bundle
Run the following in a terminal: -
make bundle-publish DIR=./templates/workspaces/base
make bundle-register DIR=./templates/workspaces/base BUNDLE_TYPE=workspace
If you have setup the TEST_ACCOUNT_CLIENT_ID in the Pre-deployment steps, then your bundle will automatically publish and you can skip to 'Creating a base workspace'. Otherwise continue with these steps: -
-
Copy the resulting JSON payload.
-
Navigate to the Swagger UI at
https://<azure_tre_fqdn>/api/docs
-
Log into the Swagger UI by clicking
Authorize
, thenAuthorize
again. You will be redirected to the login page. -
Once logged in, click
Try it out
on thePOST
/api/workspace-templates
operation: -
Paste the payload json generated earlier into the
Request body
field, then clickExecute
. Review the server response. -
To verify registration of the template do
GET
operation on/api/workspace-templates
. The name of the template should now be listed.
Creating a base workspace
Now that we have published and registered a base workspace bundle we can use the deployed API to create a base workspace.
Info
All routes are auth protected. Click the green Authorize button to receive a token for Swagger client.
As explained in the auth guide, every workspace has a corresponding app registration which if you haven't run make auth
; can be created using the helper script ./devops/scripts/aad/create_workspace_application.sh
. For example:
./devops/scripts/aad/create_workspace_application.sh \
--name "${TRE_ID} - workspace 1" \
--admin-consent \
--ux-clientid "${SWAGGER_UI_CLIENT_ID}" \
--automation-clientid "${TEST_ACCOUNT_CLIENT_ID}" \
--application-admin-clientid "${APPLICATION_ADMIN_CLIENT_ID}"
Caution
If you're using a separate tenant for AAD app registrations to the one where you've deployed the TRE infrastructure resources, ensure you've signed into that tenant in the az cli
before running the above command. See Using a separate Azure Active Directory tenant in Pre-deployment steps for more details.
Running the script will report WORKSPACE_API_CLIENT_ID
and WORKSPACE_API_CLIENT_SECRET
for the generated app. Copy these into /templates/core/.env
so that automated testing will work. You also need to use WORKSPACE_API_CLIENT_ID
in the POST body below.
Go to https://<azure_tre_fqdn>/api/docs
and use POST /api/workspaces
with the sample body to create a base workspace.
{
"templateName": "tre-workspace-base",
"properties": {
"display_name": "manual-from-swagger",
"description": "workspace for team X",
"client_id":"<WORKSPACE_API_CLIENT_ID>",
"client_secret":"<WORKSPACE_API_CLIENT_SECRET>",
"address_space_size": "medium"
}
}
The API will return an operation
object with a Location
header to query the operation status, as well as the resourceId
and resourcePath
properties to query the resource under creation.
You can also follow the progress in Azure portal as various resources come up.
Workspace level operations can now be carried out using the workspace API, at /api/workspaces/<workspace_id>/docs/
.