Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ovirt/terraform-provider-ovirt
Terraform provider for oVirt 4.x
https://github.com/ovirt/terraform-provider-ovirt
ovirt terraform terraform-provider
Last synced: about 17 hours ago
JSON representation
Terraform provider for oVirt 4.x
- Host: GitHub
- URL: https://github.com/ovirt/terraform-provider-ovirt
- Owner: oVirt
- License: other
- Created: 2018-05-16T08:17:10.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-05T15:34:07.000Z (7 months ago)
- Last Synced: 2024-12-15T22:12:58.575Z (8 days ago)
- Topics: ovirt, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/oVirt/ovirt/latest/docs
- Size: 9.28 MB
- Stars: 137
- Watchers: 12
- Forks: 73
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# oVirt Terraform provider
This is a Terraform provider for [oVirt](https://ovirt.org).
## Using this provider
This provider can be used with Terraform 0.13+ from the Terraform registry:
```hcl
terraform {
required_providers {
ovirt = {
source = "ovirt/ovirt"
}
}
}provider "ovirt" {
# Configuration options
}
```## Documentation
The detailed documentation can be found in the [Terraform registry](https://registry.terraform.io/providers/ovirt/ovirt/latest/docs).
## Contributing
If you wish to contribute to this Terraform provider please head over to the [contributing guide](CONTRIBUTING.md) for a detailed tutorial on how to write code here.
## History
The original roots of this provider were developed by [Maigard](https://github.com/Maigard) at [EMSL-MSC](http://github.com/EMSL-MSC/terraform-provider-ovirt) and was extensively worked on by [imjoey](https://github.com/imjoey). In 2021 a [complete rewrite](https://blogs.ovirt.org/2021/10/important-changes-to-the-ovirt-terraform-provider/) was made on the basis of [go-ovirt-client](https://github.com/ovirt/go-ovirt-client) to support better testability. The original provider can still be found in the [v0 branch](https://github.com/oVirt/terraform-provider-ovirt/tree/v0).