slight changes

This commit is contained in:
Tom Archer
2024-07-18 14:00:45 -07:00
committed by lonegunmanb
parent 0172bedb85
commit 3d3251c597
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
}