forked from Azure/caf-terraform-landingzones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
49 lines (41 loc) · 957 Bytes
/
output.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
output tfstates {
value = local.tfstates
sensitive = true
}
output vnets {
value = local.combined.vnets
sensitive = true
}
output azurerm_firewalls {
value = local.combined.azurerm_firewalls
sensitive = true
}
output virtual_wans {
value = local.combined.virtual_wans
sensitive = true
description = "Virtual WAN output"
}
output private_dns {
value = local.combined.private_dns
sensitive = true
}
output application_gateways {
value = local.combined.application_gateways
sensitive = true
}
output application_gateway_applications {
value = local.combined.application_gateway_applications
sensitive = true
}
output public_ip_addresses {
value = local.combined.public_ip_addresses
sensitive = true
}
output managed_identities {
value = local.remote.managed_identities
sensitive = true
}
output azuread_groups {
value = local.remote.azuread_groups
sensitive = true
}