0
0
llucycodes42
The code creates a new Azure Storage blob named "sample.vhd" in the "test.name" resource group and storage account named "test.name" and container name "test.name".
Shortcut: tf_azurerm_storage_blob
resource "azurerm_storage_blob" "${MyResource}" {
name = "sample.vhd"
resource_group_name = "\${azurerm_resource_group.test.name}"
storage_account_name = "\${azurerm_storage_account.test.name}"
storage_container_name = "\${azurerm_storage_container.test.name}"
}