Add code for AMLFS resource

This commit is contained in:
Paul Jewell
2023-10-12 15:09:09 -04:00
parent 629a403870
commit 21c4654b2d
5 changed files with 133 additions and 651 deletions

View File

@ -0,0 +1,19 @@
output "virtual_network_name" {
value = azurerm_virtual_network.example.name
}
output "subnet_name" {
value = azurerm_subnet.example.name
}
output "azurerm_managed_lustre_file_system" {
value = azurerm_managed_lustre_file_system.example.name
}
output "amlfs_sku_name" {
value = azurerm_managed_lustre_file_system.example.sku_name
}
output "amlfs_storage_capacity_in_tb" {
value = azurerm_managed_lustre_file_system.example.storage_capacity_in_tb
}