-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
221 lines (207 loc) · 7.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
output "cdn_profile" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_profile in keys(azurerm_cdn_profile.cdn_profile) :
cdn_profile => {
for key, value in azurerm_cdn_profile.cdn_profile[cdn_profile] :
key => value
}
}
}
output "cdn_endpoint" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_endpoint in keys(azurerm_cdn_endpoint.cdn_endpoint) :
cdn_endpoint => {
for key, value in azurerm_cdn_endpoint.cdn_endpoint[cdn_endpoint] :
key => value
}
}
}
output "cdn_endpoint_custom_domain" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_endpoint_custom_domain in keys(azurerm_cdn_endpoint_custom_domain.cdn_endpoint_custom_domain) :
cdn_endpoint_custom_domain => {
for key, value in azurerm_cdn_endpoint_custom_domain.cdn_endpoint_custom_domain[cdn_endpoint_custom_domain] :
key => value
}
}
}
output "cdn_frontdoor_profile" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_profile in keys(azurerm_cdn_frontdoor_profile.cdn_frontdoor_profile) :
cdn_frontdoor_profile => {
for key, value in azurerm_cdn_frontdoor_profile.cdn_frontdoor_profile[cdn_frontdoor_profile] :
key => value
}
}
}
output "cdn_frontdoor_origin_group" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_origin_group in keys(azurerm_cdn_frontdoor_origin_group.cdn_frontdoor_origin_group) :
cdn_frontdoor_origin_group => {
for key, value in azurerm_cdn_frontdoor_origin_group.cdn_frontdoor_origin_group[cdn_frontdoor_origin_group] :
key => value
}
}
}
output "cdn_frontdoor_origin" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_origin in keys(azurerm_cdn_frontdoor_origin.cdn_frontdoor_origin) :
cdn_frontdoor_origin => {
for key, value in azurerm_cdn_frontdoor_origin.cdn_frontdoor_origin[cdn_frontdoor_origin] :
key => value
}
}
}
output "cdn_frontdoor_endpoint" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_endpoint in keys(azurerm_cdn_frontdoor_endpoint.cdn_frontdoor_endpoint) :
cdn_frontdoor_endpoint => {
for key, value in azurerm_cdn_frontdoor_endpoint.cdn_frontdoor_endpoint[cdn_frontdoor_endpoint] :
key => value
}
}
}
output "cdn_frontdoor_custom_domain" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_custom_domain in keys(azurerm_cdn_frontdoor_custom_domain.cdn_frontdoor_custom_domain) :
cdn_frontdoor_custom_domain => {
for key, value in azurerm_cdn_frontdoor_custom_domain.cdn_frontdoor_custom_domain[cdn_frontdoor_custom_domain] :
key => value
}
}
}
output "cdn_frontdoor_route" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_route in keys(azurerm_cdn_frontdoor_route.cdn_frontdoor_route) :
cdn_frontdoor_route => {
for key, value in azurerm_cdn_frontdoor_route.cdn_frontdoor_route[cdn_frontdoor_route] :
key => value
}
}
}
output "cdn_frontdoor_rule_set" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_rule_set in keys(azurerm_cdn_frontdoor_rule_set.cdn_frontdoor_rule_set) :
cdn_frontdoor_rule_set => {
for key, value in azurerm_cdn_frontdoor_rule_set.cdn_frontdoor_rule_set[cdn_frontdoor_rule_set] :
key => value
}
}
}
output "cdn_frontdoor_rule" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_rule in keys(azurerm_cdn_frontdoor_rule.cdn_frontdoor_rule) :
cdn_frontdoor_rule => {
for key, value in azurerm_cdn_frontdoor_rule.cdn_frontdoor_rule[cdn_frontdoor_rule] :
key => value
}
}
}
output "cdn_frontdoor_secret" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_secret in keys(azurerm_cdn_frontdoor_secret.cdn_frontdoor_secret) :
cdn_frontdoor_secret => {
for key, value in azurerm_cdn_frontdoor_secret.cdn_frontdoor_secret[cdn_frontdoor_secret] :
key => value
}
}
}
output "cdn_frontdoor_firewall_policy" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_firewall_policy in keys(azurerm_cdn_frontdoor_firewall_policy.cdn_frontdoor_firewall_policy) :
cdn_frontdoor_firewall_policy => {
for key, value in azurerm_cdn_frontdoor_firewall_policy.cdn_frontdoor_firewall_policy[cdn_frontdoor_firewall_policy] :
key => value
}
}
}
output "cdn_frontdoor_security_policy" {
description = "Outputs all attributes of resource_type."
value = {
for cdn_frontdoor_security_policy in keys(azurerm_cdn_frontdoor_security_policy.cdn_frontdoor_security_policy) :
cdn_frontdoor_security_policy => {
for key, value in azurerm_cdn_frontdoor_security_policy.cdn_frontdoor_security_policy[cdn_frontdoor_security_policy] :
key => value
}
}
}
output "variables" {
description = "Displays all configurable variables passed by the module. __default__ = predefined values per module. __merged__ = result of merging the default values and custom values passed to the module"
value = {
default = {
for variable in keys(local.default) :
variable => local.default[variable]
}
merged = {
cdn_profile = {
for key in keys(var.cdn_profile) :
key => local.cdn_profile[key]
}
cdn_endpoint = {
for key in keys(var.cdn_endpoint) :
key => local.cdn_endpoint[key]
}
cdn_endpoint_custom_domain = {
for key in keys(var.cdn_endpoint_custom_domain) :
key => local.cdn_endpoint_custom_domain[key]
}
cdn_frontdoor_profile = {
for key in keys(var.cdn_frontdoor_profile) :
key => local.cdn_frontdoor_profile[key]
}
cdn_frontdoor_origin_group = {
for key in keys(var.cdn_frontdoor_origin_group) :
key => local.cdn_frontdoor_origin_group[key]
}
cdn_frontdoor_origin = {
for key in keys(var.cdn_frontdoor_origin) :
key => local.cdn_frontdoor_origin[key]
}
cdn_frontdoor_endpoint = {
for key in keys(var.cdn_frontdoor_endpoint) :
key => local.cdn_frontdoor_endpoint[key]
}
cdn_frontdoor_custom_domain = {
for key in keys(var.cdn_frontdoor_custom_domain) :
key => local.cdn_frontdoor_custom_domain[key]
}
cdn_frontdoor_route = {
for key in keys(var.cdn_frontdoor_route) :
key => local.cdn_frontdoor_route[key]
}
cdn_frontdoor_rule_set = {
for key in keys(var.cdn_frontdoor_rule_set) :
key => local.cdn_frontdoor_rule_set[key]
}
cdn_frontdoor_rule = {
for key in keys(var.cdn_frontdoor_rule) :
key => local.cdn_frontdoor_rule[key]
}
cdn_frontdoor_secret = {
for key in keys(var.cdn_frontdoor_secret) :
key => local.cdn_frontdoor_secret[key]
}
cdn_frontdoor_firewall_policy = {
for key in keys(var.cdn_frontdoor_firewall_policy) :
key => local.cdn_frontdoor_firewall_policy[key]
}
cdn_frontdoor_security_policy = {
for key in keys(var.cdn_frontdoor_security_policy) :
key => local.cdn_frontdoor_security_policy[key]
}
}
}
}