From da6989377b0f0817b8d87c80370da7dff7d9d227 Mon Sep 17 00:00:00 2001 From: Tom Harvey Date: Thu, 24 Oct 2019 19:28:16 +0200 Subject: [PATCH] r/storage_blob: fixing the example (#4713) --- website/docs/r/storage_blob.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/storage_blob.html.markdown b/website/docs/r/storage_blob.html.markdown index 32f36b63e4fd..2d6098224c3f 100644 --- a/website/docs/r/storage_blob.html.markdown +++ b/website/docs/r/storage_blob.html.markdown @@ -38,7 +38,7 @@ resource "azurerm_storage_blob" "test" { resource_group_name = "${azurerm_resource_group.test.name}" storage_account_name = "${azurerm_storage_account.test.name}" storage_container_name = "${azurerm_storage_container.test.name}" - type = "blob" + type = "Block" source = "some-local-file.zip" } ```