Some checks failed
CI / build (push) Failing after 33s
- Regenerated docs/ via tfplugindocs: 51 files covering all 20 resources and 30 data sources with auto-extracted schemas and examples - Removed stale docs for old resources (build.md, ssh.md) - CHANGELOG.md: added v1.0.0 entry with full feature list, breaking changes, and security notes - terraform-registry-manifest.json: confirmed protocol_versions ["6.0"] is correct for Terraform Plugin Framework Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
975 B
Markdown
34 lines
975 B
Markdown
---
|
|
# 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 generated by tfplugindocs -->
|
|
## 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.
|