outputs.tf (15 lines of code) (raw):

output "resource" { description = <<-EOT "This is the full output for the resource. This is the default output for the module following AVM standards. Review the examples below for the correct output to use in your module." Examples: - module.firewall.resource.id - module.firewall.resource.name - module.firewall.resource.ip_configuration - module.firewall.resource.virtual_hub EOT value = azurerm_firewall.this } output "resource_id" { description = "This is the resource id for the firewall resource." value = azurerm_firewall.this.id }