forked from claranet/terraform-azurerm-function-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
60 lines (49 loc) · 2.1 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
56
57
58
59
60
output "linux_function_app" {
description = "Linux Function App output object if Linux is chosen. Please refer to `./modules/linux-function/README.md`"
value = try(module.linux_function["enabled"], null)
}
output "windows_function_app" {
description = "Windows Function App output object if Windows is chosen. Please refer to `./modules/windows-function/README.md`"
value = try(module.windows_function["enabled"], null)
}
output "function_app_id" {
description = "ID of the created Function App"
value = local.function_output.function_app_id
}
output "function_app_name" {
description = "Name of the created Function App"
value = local.function_output.function_app_name
}
output "function_app_default_hostname" {
description = "Default hostname of the created Function App"
value = local.function_output.function_app_default_hostname
}
output "function_app_outbound_ip_addresses" {
description = "Outbound IP adresses of the created Function App"
value = local.function_output.function_app_outbound_ip_addresses
}
output "function_app_possible_outbound_ip_addresses" {
description = "All possible outbound IP adresses of the created Function App"
value = local.function_output.function_app_possible_outbound_ip_addresses
}
output "function_app_connection_string" {
description = "Connection string of the created Function App"
value = local.function_output.function_app_connection_string
sensitive = true
}
output "function_app_identity" {
description = "Identity block output of the Function App"
value = local.function_output.function_app_identity
}
output "function_app_slot_name" {
description = "Name of the Function App slot"
value = local.function_output.function_app_slot_name
}
output "function_app_slot_default_hostname" {
description = "Default hostname of the Function App slot"
value = local.function_output.function_app_slot_default_hostname
}
output "function_app_slot_identity" {
description = "Identity block output of the Function App slot"
value = local.function_output.function_app_slot_identity
}