Skip to content

Commit 2d760ab

Browse files
authored
remote storage
1 parent 8f6831e commit 2d760ab

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
resource "azurerm_storage_account" "ml_storage" {
2+
name = "mlstorageacct123"
3+
resource_group_name = azurerm_resource_group.ml_rg.name
4+
location = azurerm_resource_group.ml_rg.location
5+
account_tier = "Standard"
6+
account_replication_type = "LRS"
7+
}
8+
9+
resource "azurerm_storage_container" "ml_container" {
10+
name = "ml-artifacts"
11+
container_access_type = "private"
12+
}

0 commit comments

Comments
 (0)