Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frankyang0529/terraform-provider-harvester
Terraform Harvester provider
https://github.com/frankyang0529/terraform-provider-harvester
Last synced: about 2 months ago
JSON representation
Terraform Harvester provider
- Host: GitHub
- URL: https://github.com/frankyang0529/terraform-provider-harvester
- Owner: FrankYang0529
- License: apache-2.0
- Fork: true (harvester/terraform-provider-harvester)
- Created: 2022-11-18T09:10:12.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T10:38:01.000Z (7 months ago)
- Last Synced: 2024-04-12T14:22:00.665Z (7 months ago)
- Language: Go
- Homepage: https://registry.terraform.io/providers/harvester/harvester/latest
- Size: 454 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Terraform Provider for Harvester
==================================## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x
- [Go](https://golang.org/doc/install) 1.21 to build the provider plugin## Install The Provider
copy and paste this code into your Terraform configuration. Then, run `terraform init` to initialize it.
```hcl
terraform {
required_providers {
harvester = {
source = "harvester/harvester"
version = ""
}
}
}provider "harvester" {
# Configuration options
}
```## Using the provider
Documentation about the provider specific configuration options can be found on the [docs directory](docs).