Files
terraform-provider-unifi/examples/resources/unifi_firewall_group/resource.tf
Paul Tyng 46709ebf37 Docs updates, more examples, some tool updates
Change docs dirs based on registry expectations
2020-06-29 22:49:13 -04:00

10 lines
170 B
HCL

variable "laptop_ips" {
type = list(string)
}
resource "unifi_firewall_group" "can_print" {
name = "can-print"
type = "address-group"
members = var.laptop_ips
}