generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
55 lines (45 loc) · 2.08 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
output "application_group_id" {
description = "The ID of the application group."
value = module.avm_res_desktopvirtualization_applicationgroup.resource.id
}
output "dcr_resource_id" {
description = "The ID of the Monitor Data Collection Rule."
value = module.avm_ptn_avd_lza_insights.resource_id
}
output "hostpool_id" {
description = "The ID of the host pool."
value = module.avm_res_desktopvirtualization_hostpool.resource.id
}
output "log_analytics_workspace_id" {
description = "The ID of the Log Analytics workspace."
value = azurerm_log_analytics_workspace.this.id
}
output "private_endpoints_hostpool" {
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 = module.avm_res_desktopvirtualization_hostpool.private_endpoints
}
output "registrationinfo_token" {
description = "The token for the host pool registration."
sensitive = true
value = module.avm_res_desktopvirtualization_hostpool.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 = module.avm_res_desktopvirtualization_hostpool.resource
}
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 = module.avm_res_desktopvirtualization_hostpool.resource
}
output "scaling_plan_id" {
description = "The ID of the scaling plan."
value = module.avm_res_desktopvirtualization_scaling_plan.resource.id
}
output "virtual_desktop_host_pool_name" {
description = "The name of the host pool."
value = module.avm_res_desktopvirtualization_hostpool.resource.name
}
output "workspace_id" {
description = "The ID of the workspace."
value = module.avm_res_desktopvirtualization_workspace.resource.id
}