github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/examples/azure/terraform-azure-frontdoor-example/output.tf (about) 1 output "resource_group_name" { 2 value = azurerm_resource_group.rg.name 3 } 4 5 output "front_door_name" { 6 description = "Specifies the name of the Front Door service." 7 value = azurerm_frontdoor.frontdoor.name 8 } 9 10 output "front_door_url" { 11 description = "Specifies the host name of the frontend_endpoint. Must be a domain name." 12 value = azurerm_frontdoor.frontdoor.frontend_endpoint[0].host_name 13 } 14 15 output "front_door_endpoint_name" { 16 description = "Specifies the friendly name of the frontend_endpoint" 17 value = azurerm_frontdoor.frontdoor.frontend_endpoint[0].name 18 }