scenarios/aca-internal/terraform/modules/06-front-door/outputs.tf (7 lines of code) (raw):
output "result" {
value = {
fqdn = module.frontDoor.frontDoorFqdn
privateLinkServiceId = module.frontDoor.privateLinkServiceId
privateLinkEndpointConnectionId = [for connection in module.frontDoor.privateEndpointConnections : connection.id if connection.description == "frontdoor"]
}
}