mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
7 lines
251 B
HCL
7 lines
251 B
HCL
resource "azurerm_storage_account" "bdb_node_SA" {
|
|
name = "bdbnodestorageaccount"
|
|
location = "${var.location}"
|
|
resource_group_name = "${azurerm_resource_group.bdb_node_RG.name}"
|
|
account_type = "Standard_LRS"
|
|
}
|