-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoutput.tf
More file actions
24 lines (20 loc) · 759 Bytes
/
output.tf
File metadata and controls
24 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "resource_group_id" {
description = "The resource ID of the Resource Group."
value = azapi_resource.resource_group.id
}
output "fabric_capacity_id" {
description = "The resource ID of the Fabric capacity."
value = azapi_resource.fabric_capacity.id
}
output "fabric_capacity_name" {
description = "The name of the Fabric capacity (sanitized ARM resource name)."
value = azapi_resource.fabric_capacity.name
}
output "fabric_capacity_name_requested" {
description = "The requested capacity_name value after suffixing (before sanitization)."
value = local.capacity_name
}
output "fabric_capacity_location" {
description = "The Azure region the Fabric capacity is deployed into."
value = var.location
}