65 lines
2.0 KiB
HCL
65 lines
2.0 KiB
HCL
output "resource_group_name" {
|
|
description = "The name of the created resource group."
|
|
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
|
|
}
|
|
|
|
output "virtual_machine_name" {
|
|
description = "The name of the created virtual machine."
|
|
value = azurerm_windows_virtual_machine.main.name
|
|
}
|
|
|
|
output "automation_account_name" {
|
|
description = "The name of the created automation account."
|
|
value = azurerm_automation_account.example.name
|
|
}
|
|
|
|
output "powershell_runbook_name" {
|
|
description = "The name of the created PowerShell runbook."
|
|
value = azurerm_automation_runbook.example.name
|
|
}
|
|
|
|
output "one_time_schedule_name" {
|
|
description = "The name of the created one-time schedule for the runbook."
|
|
value = azurerm_automation_schedule.one_time.name
|
|
}
|
|
|
|
output "hourly_schedule_name" {
|
|
description = "The name of the created hourly schedule for the runbook."
|
|
value = azurerm_automation_schedule.hourly.name
|
|
}
|