This resource allows you to add/update/delete Panorama address groups.
Address groups are either statically defined or dynamically defined, so only static_addresses or dynamic_match should be defined within a given address group.
# Static group
resource "panos_panorama_address_group" "example1" {
name = "static ntp grp"
description = "My NTP servers"
static_addresses = ["ntp1", "ntp2", "ntp3"]
}
# Dynamic group
resource "panos_panorama_address_group" "example2" {
name = "dynamic grp"
description = "My internal NTP servers"
dynamic_match = "'internal' and 'ntp'"
}
The following arguments are supported:
name - (Required) The address group's name. device_group - (Optional) The device group to put the address group into (default: shared). static_addresses - (Optional) The address objects to include in this statically defined address group. dynamic_match - (Optional) The IP tags to include in this DAG. description - (Optional) The address group's description. tags - (Optional) List of administrative tags.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/panos/r/panorama_address_group.html