Skip to content

Commit

Permalink
Fix Guacamole shared drive always enabled
Browse files Browse the repository at this point in the history
Related to #3885

Update Guacamole shared drive configuration to respect the 'drive' option setting.

* Change the default value of `guac_enable_drive` to `false` in `templates/workspace_services/guacamole/porter.yaml`.
* Change the default value of `guac_enable_drive` to `false` in `templates/workspace_services/guacamole/template_schema.json`.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/microsoft/AzureTRE/issues/3885?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
marrobi committed Jul 30, 2024
1 parent 6d51ace commit b26c5ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/workspace_services/guacamole/porter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ parameters:
description: "Guacamole disable paste configuration"
- name: guac_enable_drive
type: boolean
default: true
default: false
env: GUAC_ENABLE_DRIVE
description: "Guacamole enable drive configuration"
- name: guac_drive_name
Expand Down
3 changes: 2 additions & 1 deletion templates/workspace_services/guacamole/template_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
"type": "boolean",
"title": "Enable Drive",
"description": "Enable mounted drive",
"updateable": true
"updateable": true,
"default": false
},
"guac_disable_download": {
"$id": "#/properties/guac_disable_download",
Expand Down

0 comments on commit b26c5ad

Please sign in to comment.