Edits per Code Review

This commit is contained in:
Tom Archer
2023-05-19 08:03:44 -07:00
parent c7bd6dc586
commit 40ac990971
4 changed files with 61 additions and 18 deletions

View File

@ -2,14 +2,19 @@ output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "azurerm_virtual_network_name" {
output "virtual_network_name" {
value = azurerm_virtual_network.test.name
}
output "azurerm_subnet_name" {
output "subnet_name" {
value = azurerm_subnet.test.name
}
output "azurerm_linux_virtual_machine_names2" {
value = [for s in azurerm_linux_virtual_machine.test : s.name[*]]
output "linux_virtual_machine_names" {
value = [for s in azurerm_linux_virtual_machine.test : s.name[*]]
}
output "linux_virtual_machine_password" {
sensitive = true
value = local.password
}