--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "virtfusion_hypervisors Data Source - virtfusion" subcategory: "" description: |- Fetches all VirtFusion hypervisors. --- # virtfusion_hypervisors (Data Source) Fetches all VirtFusion hypervisors. ## Example Usage ```terraform data "virtfusion_hypervisors" "all" {} output "hypervisor_names" { value = [for h in data.virtfusion_hypervisors.all.hypervisors : h.name] } ``` ## Schema ### Optional - `results` (Number) Maximum number of results to return. Defaults to 300. ### Read-Only - `hypervisors` (Attributes List) List of hypervisors. (see [below for nested schema](#nestedatt--hypervisors)) ### Nested Schema for `hypervisors` Read-Only: - `enabled` (Boolean) Whether the hypervisor is enabled. - `hostname` (String) The hypervisor hostname. - `id` (Number) The hypervisor ID. - `name` (String) The hypervisor name. - `type` (String) The hypervisor type.