0
0
llucycodes42
The following code creates a resource called "sharename" in the "test" resource group and stores data in the "sharename" storage account with a 50GB quota.
Shortcut: tf_azurerm_storage_share
resource "azurerm_storage_share" "${MyResource}" {
name = "sharename"
resource_group_name = "\${azurerm_resource_group.test.name}"
storage_account_name = "\${azurerm_storage_account.test.name}"
quota = 50
}