terraform-provider-netbox
terraform-provider-netbox copied to clipboard
[Feature Request] Add support for 'netbox_device_power_outlets' data source
Hello,
We would like to request a data source for the netbox_device_power_outlet
resources, so we can filter them like we do with the netbox_device_interfaces
data source, like:
data "netbox_device_power_outlets" "AP7920" {
filter {
name = "device_id"
value = netbox_device.AP7920.id
}
name_regex = "Outlet.*"
}
Thanks!