Looking at this the following creates a config.json file (I think):
new_ws <- create_workspace(name = <workspace_name>,
subscription_id = <subscription_id>,
resource_group = <resource_group_name>,
location = location,
create_resource_group = FALSE)
write_workspace_config(new_ws)
Once this is done, it can be picked up like so:
ws <- load_workspace_from_config()
I would think that it is not best practice to source control the config.json file. What is the best approach please (in Windows)?
Thanks.