Use this data source to access information about existing IP Groups.
data "azurerm_ip_groups" "example" {
name = "existing"
resource_group_name = "existing"
}
output "ids" {
value = data.azurerm_ip_groups.example.ids
}
The following arguments are supported:
name
- (Required) A substring to match some number of IP Groups.
resource_group_name
- (Required) The name of the Resource Group where the IP Groups exist.
In addition to the Arguments listed above - the following Attributes are exported:
ids
- A list of IP Group IDs.
names
- A list of IP Group Names.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 10 minutes) Used when retrieving the IP Groups.