Initial put

This commit is contained in:
Tom Archer
2024-07-18 12:29:30 -07:00
committed by lonegunmanb
parent 107a79c353
commit 0172bedb85
5 changed files with 183 additions and 0 deletions

View File

@ -0,0 +1,19 @@
output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "storage_account_name" {
value = azurerm_storage_account.example.name
}
output "batch_account_name" {
value = azurerm_batch_account.example.name
}
output "batch_pool_fixed_name" {
value = azurerm_batch_pool.fixed.name
}
output "batch_pool_autopool_name" {
value = azurerm_batch_pool.autopool.name
}