* feat: initialize Terraform Plugin Framework * fix docker-compose path for tests * fix: ensure documentation can be generated with old provider SDK and new plugin framework * lint
1.1 KiB
1.1 KiB
page_title, subcategory, description
| page_title | subcategory | description |
|---|---|---|
| unifi_firewall_group Resource - terraform-provider-unifi | unifi_firewall_group manages groups of addresses or ports for use in firewall rules (unifi_firewall_rule). |
unifi_firewall_group (Resource)
unifi_firewall_group manages groups of addresses or ports for use in firewall rules (unifi_firewall_rule).
Example Usage
variable "laptop_ips" {
type = list(string)
}
resource "unifi_firewall_group" "can_print" {
name = "can-print"
type = "address-group"
members = var.laptop_ips
}
Schema
Required
members(Set of String) The members of the firewall group.name(String) The name of the firewall group.type(String) The type of the firewall group. Must be one of:address-group,port-group, oripv6-address-group.
Optional
site(String) The name of the site to associate the firewall group with.
Read-Only
id(String) The ID of the firewall group.