--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "virtfusion Provider" subcategory: "" description: |- The VirtFusion provider allows managing VirtFusion virtualization platform resources. --- # virtfusion Provider The VirtFusion provider allows managing VirtFusion virtualization platform resources. ## Example Usage ```terraform provider "virtfusion" { endpoint = "https://cp.example.com" api_token = var.virtfusion_api_token } variable "virtfusion_api_token" { type = string sensitive = true } ``` ## Schema ### Optional - `api_token` (String, Sensitive) The API token for authentication. Can also be set with the `VIRTFUSION_API_TOKEN` environment variable. - `endpoint` (String) The VirtFusion API endpoint. Can be a hostname (e.g. `cp.example.com`) or full URL (e.g. `https://cp.example.com/api/v1`). Can also be set with the `VIRTFUSION_ENDPOINT` environment variable.