From e13fcdbffaaae9092854ae80a9088659d05a6e73 Mon Sep 17 00:00:00 2001 From: Eric D Date: Tue, 26 Sep 2023 10:57:49 -0400 Subject: [PATCH] modified outputs.tf based on feedback --- quickstart/101-vm-auto-shutdown/outputs.tf | 27 +--------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/quickstart/101-vm-auto-shutdown/outputs.tf b/quickstart/101-vm-auto-shutdown/outputs.tf index c88ee984..3a7daff5 100644 --- a/quickstart/101-vm-auto-shutdown/outputs.tf +++ b/quickstart/101-vm-auto-shutdown/outputs.tf @@ -3,36 +3,11 @@ output "resource_group_name" { value = azurerm_resource_group.rg.name } -output "virtual_network_name" { - description = "The name of the created virtual network." - value = azurerm_virtual_network.my_terraform_network.name -} - -output "subnet_name" { - description = "The name of the created subnet." - value = azurerm_subnet.my_terraform_subnet.name -} - -output "public_ip_name" { - description = "The name of the created public IP." - value = azurerm_public_ip.my_terraform_public_ip.name -} - output "public_ip_address" { description = "The address of the created public IP." value = azurerm_public_ip.my_terraform_public_ip.ip_address } -output "network_security_group_name" { - description = "The name of the created network security group." - value = azurerm_network_security_group.my_terraform_nsg.name -} - -output "network_interface_name" { - description = "The name of the created network interface." - value = azurerm_network_interface.my_terraform_nic.name -} - output "storage_account_name" { description = "The name of the created storage account." value = azurerm_storage_account.my_storage_account.name @@ -61,4 +36,4 @@ output "one_time_schedule_name" { output "hourly_schedule_name" { description = "The name of the created hourly schedule for the runbook." value = azurerm_automation_schedule.hourly.name -} +} \ No newline at end of file