We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f6831e commit 2d760abCopy full SHA for 2d760ab
1 file changed
terraform-infrastructure/optional/remote-storage.tf
@@ -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