outputs.tf (17 lines of code) (raw):

output "private_endpoints" { description = "A map of private endpoints. The map key is the supplied input to var.private_endpoints. The map value is the entire azurerm_private_endpoint resource." value = azurerm_private_endpoint.this } output "registrationinfo_token" { description = "The token for the host pool registration." sensitive = true value = azurerm_virtual_desktop_host_pool_registration_info.registrationinfo.token } output "resource" { description = "This output is the full output for the resource to allow flexibility to reference all possible values for the resource. Example usage: module.<modulename>.resource.id" value = azurerm_virtual_desktop_host_pool.this } output "resource_id" { description = "Resource ID of `azurerm_virtual_desktop_host_pool` resource created by this module." value = azurerm_virtual_desktop_host_pool.this.id }