Manages a firewall group on Vultr, providing network security by controlling inbound and outbound traffic.
Get information about a firewall group on your Vultr account.
Get the information for a firewall group by description
:
data "vultr_firewall_group" "my_fwg" {
filter {
name = "description"
values = ["fwg-description"]
}
}
The following arguments are supported:
filter
- (Required) Query parameters for finding firewall groups.The filter
block supports the following:
name
- Attribute name to filter with.values
- One or more values filter with.The following attributes are exported:
description
- The description of the firewall group.date_created
- The date the firewall group was added to your Vultr account.date_modified
- The date the firewall group was last modified.instance_count
- The number of instances this firewall group is applied to.rule_count
- The number of rules added to this firewall group.max_rule_count
- The maximum number of rules this firewall group can have.
No comments yet.