0
0
llucycodes42
The code in this snippet creates a storage table named "mysampletable" in the "test" resource group and stores the storage account name for the table in the "test" storage account.
Shortcut: tf_azurerm_storage_table
resource "azurerm_storage_table" "${MyResource}" {
name = "mysampletable"
resource_group_name = "\${azurerm_resource_group.test.name}"
storage_account_name = "\${azurerm_storage_account.test.name}"
}