forked from microsoft/AzureTRE
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bastion service to workspace services
- Loading branch information
1 parent
fb714e9
commit d80a9fa
Showing
7 changed files
with
352 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
{ | ||
"schemaType": "ParameterSet", | ||
"schemaVersion": "1.0.1", | ||
"namespace": "", | ||
"name": "tre-service-bastion", | ||
"parameters": [ | ||
{ | ||
"name": "id", | ||
"source": { | ||
"env": "ID" | ||
} | ||
}, { | ||
"name": "workspace_id", | ||
"source": { | ||
"env": "WORKSPACE_ID" | ||
} | ||
}, | ||
{ | ||
"name": "tre_id", | ||
"source": { | ||
"env": "TRE_ID" | ||
} | ||
}, | ||
{ | ||
"name": "mgmt_acr_name", | ||
"source": { | ||
"env": "ACR_NAME" | ||
} | ||
}, | ||
{ | ||
"name": "mgmt_resource_group_name", | ||
"source": { | ||
"env": "MGMT_RESOURCE_GROUP_NAME" | ||
} | ||
}, | ||
{ | ||
"name": "tfstate_container_name", | ||
"source": { | ||
"env": "TERRAFORM_STATE_CONTAINER_NAME" | ||
} | ||
}, | ||
{ | ||
"name": "tfstate_resource_group_name", | ||
"source": { | ||
"env": "MGMT_RESOURCE_GROUP_NAME" | ||
} | ||
}, | ||
{ | ||
"name": "tfstate_storage_account_name", | ||
"source": { | ||
"env": "MGMT_STORAGE_ACCOUNT_NAME" | ||
} | ||
}, | ||
|
||
{ | ||
"name": "bastion_disable_copy", | ||
"source": { | ||
"env": "GUAC_DISABLE_COPY" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_disable_download", | ||
"source": { | ||
"env": "GUAC_DISABLE_DOWNLOAD" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_disable_upload", | ||
"source": { | ||
"env": "GUAC_DISABLE_UPLOAD" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_disable_paste", | ||
"source": { | ||
"env": "GUAC_DISABLE_PASTE" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_drive_name", | ||
"source": { | ||
"env": "GUAC_DRIVE_NAME" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_drive_path", | ||
"source": { | ||
"env": "GUAC_DRIVE_PATH" | ||
} | ||
}, | ||
{ | ||
"name": "bastion_enable_drive", | ||
"source": { | ||
"env": "GUAC_ENABLE_DRIVE" | ||
} | ||
}, | ||
{ | ||
"name": "image_tag", | ||
"source": { | ||
"env": "IMAGE_TAG" | ||
} | ||
}, | ||
{ | ||
"name": "is_exposed_externally", | ||
"source": { | ||
"env": "IS_EXPOSED_EXTERNALLY" | ||
} | ||
}, | ||
{ | ||
"name": "aad_authority_url", | ||
"source": { | ||
"env": "AAD_AUTHORITY_URL" | ||
} | ||
}, | ||
{ | ||
"name": "arm_environment", | ||
"source": { | ||
"env": "ARM_ENVIRONMENT" | ||
} | ||
} | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.