» Data Source: azurerm_firewall

Use this data source to access information about an existing Azure Firewall.

» Example Usage

data "azurerm_firewall" "test" {
  name                = "firewall1"
  resource_group_name = "firewall-RG"
}

output "firewall_private_ip" {
  value = "${data.azurerm_firewall.test.ip_configuration.0.private_ip_address}"
}

» Argument Reference

  • name - (Required) The name of the Azure Firewall.

  • resource_group_name - (Required) The name of the Resource Group in which the Azure Firewall exists.

» Attributes Reference

The following attributes are exported:

  • id - The Resource ID of the Azure Firewall.

  • ip_configuration - A ip_configuration block as defined below.


A ip_configuration block exports the following: