-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
67 lines (58 loc) · 2 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
61
62
63
64
65
66
67
output "id" {
description = " The Logic App ID."
value = local.logic_app_id
}
output "identity" {
description = "Logic App Identity"
value = azurerm_logic_app_workflow.workflow.identity
}
############## Logic App Workflow Specific Outputs ###############
output "access_endpoint" {
description = "The Access Endpoint for the Logic App Workflow."
value = azurerm_logic_app_workflow.workflow.access_endpoint
}
output "connector_endpoint_ip_addresses" {
description = "The list of access endpoint IP addresses of connector for the Logic App Workflow."
value = azurerm_logic_app_workflow.workflow.connector_endpoint_ip_addresses
}
output "connector_outbound_ip_addresses" {
description = "The list of outgoing IP addresses of connector for the Logic App Workflow."
value = azurerm_logic_app_workflow.workflow.connector_outbound_ip_addresses
}
output "workflow_endpoint_ip_addresses" {
description = "The list of access endpoint IP addresses of workflow for the Logic App Workflow."
value = azurerm_logic_app_workflow.workflow.workflow_endpoint_ip_addresses
}
output "workflow_outbound_ip_addresses" {
description = "The list of outgoing IP addresses of workflow for the Logic App Workflow."
value = azurerm_logic_app_workflow.workflow.workflow_outbound_ip_addresses
}
######################## Triggers ########################
output "http_triggers" {
description = "Logic App Http Triggers."
value = {
for name, trigger in azurerm_logic_app_trigger_http_request.this :
name => {
id = trigger.id
callback = trigger.callback_url
}
}
}
output "recurrence_triggers" {
description = "Logic App Recurrence Triggers."
value = {
for name, trigger in azurerm_logic_app_trigger_recurrence.this :
name => {
id = trigger.id
}
}
}
output "custom_triggers" {
description = "Logic App Custom Triggers."
value = {
for name, trigger in azurerm_logic_app_trigger_custom.this :
name => {
id = trigger.id
}
}
}