generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
outputs.tf
20 lines (17 loc) · 984 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = "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
}