-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoutputs.tf
69 lines (56 loc) · 1.98 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
68
69
output "name" {
description = "The name of the CDN FrontDoor Profile."
value = azurerm_cdn_frontdoor_profile.main.name
}
output "id" {
description = "The ID of the CDN FrontDoor Profile."
value = azurerm_cdn_frontdoor_profile.main.id
}
output "resource" {
description = "Azure CDN FrontDoor Profile output object."
value = azurerm_cdn_frontdoor_profile.main
}
output "resource_endpoint" {
description = "Azure CDN FrontDoor endpoints resource output."
value = azurerm_cdn_frontdoor_endpoint.main
}
output "resource_origin_group" {
description = "Azure CDN FrontDoor origin group resource output."
value = azurerm_cdn_frontdoor_origin_group.main
}
output "resource_origin" {
description = "Azure CDN FrontDoor origin resource output."
value = azurerm_cdn_frontdoor_origin.main
}
output "resource_custom_domain" {
description = "Azure CDN FrontDoor custom domain resource output."
value = azurerm_cdn_frontdoor_custom_domain.main
}
output "resource_rule_set" {
description = "Azure CDN FrontDoor rule set resource output."
value = azurerm_cdn_frontdoor_rule_set.main
}
output "resource_rule" {
description = "Azure CDN FrontDoor rule resource output."
value = azurerm_cdn_frontdoor_rule.main
}
output "resource_firewall_policy" {
description = "Azure CDN FrontDoor firewall policy resource output."
value = azurerm_cdn_frontdoor_firewall_policy.main
}
output "resource_security_policy" {
description = "Azure CDN FrontDoor security policy resource output."
value = azurerm_cdn_frontdoor_security_policy.main
}
output "resource_route" {
description = "Azure CDN FrontDoor route resource output."
value = azurerm_cdn_frontdoor_route.main
}
output "resource_secret" {
description = "Azure CDN FrontDoor secret resource output."
value = azurerm_cdn_frontdoor_secret.main
}
output "module_diagnostics" {
description = "Diagnostics Settings module output."
value = module.diagnostics
}