Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix.bootstrap order #457

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion caf_solution/add-ons/caf_eslz/output.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
output "objects" {
value = module.enterprise_scale
value = merge(
tomap(
{
(var.landingzone.key) = {
"vnets" = {
for key, value in module.enterprise_scale.azurerm_virtual_network.connectivity : value.location => value
}
"virtual_subnets" = {
for key, value in module.enterprise_scale.azurerm_subnet.connectivity : value.name => value
}
"azurerm_firewalls" = {
for key, value in module.enterprise_scale.azurerm_firewall.connectivity : value.location => value
}
"azurerm_firewall_policies" = {
for key, value in module.enterprise_scale.azurerm_firewall_policy.connectivity : value.location => value
}
"private_dns_zones" = {
for key, value in module.enterprise_scale.azurerm_private_dns_zone.connectivity : value.name => value
}
"virtual_network_gateways" = {
for key, value in module.enterprise_scale.azurerm_virtual_network_gateway.connectivity : value.name => value
}
}
}
),
module.enterprise_scale
)
sensitive = true
}

Expand Down