I need to update most of the settings that are visible on the Admin Console UI by using Terraform. In another post in this forum I saw that I can use `custom_config` in a `databricks_workspace_conf` resource to achieve that but the options seem limited.
In the same post the accepted answer also shows how to change some of the settings with curl by sending a patch request to `workspace_conf` endpoint of the DataBricks REST API:
curl --location --request PATCH 'https://test.cloud.databricks.com/api/2.0/workspace-conf' \
--header 'Authorization: Bearer REPLACE_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"enableWebTerminal": "true",
"enableGp3": "true",
"enableDbfsFileBrowser": "true",
"enableDcs": "true"
}'
When I looked through the API docs, I couldn't find anything related to this endpoint. I also tried searching the net by using the names of some of the settings but nothing came up.
So my questions is, how can I get a list of the flags that can be changed with this endpoint that I can also use with a Terraform configuration?