-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
34 lines (28 loc) · 895 Bytes
/
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
output "resource_group_name" {
value = azurerm_resource_group.resource_group.name
description = "Name of the resource group"
}
output "cosmosdb_account_id" {
value = module.cosmosdb.cosmosdb_account_id
description = "The id of the cosmosdb account"
}
output "cosmosdb_account_name" {
value = module.cosmosdb.cosmosdb_account_name
description = "The name of the cosmosdb account"
}
output "cosmosdb_account_endpoint" {
value = module.cosmosdb.cosmosdb_account_endpoint
description = "The endpoint of the cosmosdb account"
}
output "function_app_name" {
value = module.function-app.function_app_name
description = "Name of the resource group"
}
output "function_app_id" {
value = module.function-app.function_app_id
description = "Id of the function app"
}
output "apim_gateway_url" {
value = module.apim.apim_gateway_url
description = "Gateway URL of the APIM"
}