From 267b2aceed0a27abe276cdcf13cfc821b26a8976 Mon Sep 17 00:00:00 2001 From: Djamel Eddine Feddad Date: Wed, 11 Sep 2019 14:15:54 +0800 Subject: [PATCH] Fixed a typo in the import sample While trying to import a resource from Azure, I met a weird error message ```Error: unknown resource type: azurerm_databrick_workspace```, it took me sometimes to figure out the issue was just a simple typo. --- website/docs/r/databricks_workspace.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/databricks_workspace.html.markdown b/website/docs/r/databricks_workspace.html.markdown index c200849e8574..a68ac647c6fa 100644 --- a/website/docs/r/databricks_workspace.html.markdown +++ b/website/docs/r/databricks_workspace.html.markdown @@ -61,5 +61,5 @@ The following attributes are exported: Databrick Workspaces can be imported using the `resource id`, e.g. ```shell -terraform import azurerm_databrick_workspace.workspace1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Databricks/workspaces/workspace1 +terraform import azurerm_databricks_workspace.workspace1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Databricks/workspaces/workspace1 ```