Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 2.54 KB

terraform-provider.md

File metadata and controls

47 lines (36 loc) · 2.54 KB
sidebar_position sidebar_label title
1
Harvester Terraform Provider
Harvester Terraform Provider

Support Matrix

Harvester Version Supported Terraform Provider Harvester Supported Terraformer Harvester
v1.2.0 v0.6.3 v1.1.1-harvester
v1.1.2 v0.6.3 v1.1.1-harvester
v1.1.1 v0.6.3 v1.1.1-harvester
v1.1.0 v0.6.3 v1.1.1-harvester

Requirements

  • Terraform >= 0.13.x
  • Go 1.18 to build the provider plugin

Install The Provider

copy and paste this code into your Terraform configuration. Then, run terraform init to initialize it.

terraform {
  required_providers {
    harvester = {
      source = "harvester/harvester"
      version = "<replace to the latest release version>"
    }
  }
}

provider "harvester" {
  # Configuration options
}

Using the provider

More details about the provider-specific configurations can be found in the docs.

Github Repo: https://github.com/harvester/terraform-provider-harvester