Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Latest commit

 

History

History
42 lines (31 loc) · 1.15 KB

index.html.markdown

File metadata and controls

42 lines (31 loc) · 1.15 KB
layout page_title sidebar_current description
hedvig
Provider: Hedvig
docs-hedvig-index
The Hedvig provider is used to interact with Hedvig resources. The provider needs to be configured with proper credentials and a working cluster before it can be used.

Hedvig Provider

The Hedvig provider is used to interact with Hedvig. The provider needs to be configured with the proper credentials on a working Hedvig cluster before it can be used.

Use the navigation to the left to read about the available resources.

Example Usage

// Configure the Hedvig provider
provider "hedvig" {
  username = "Example"
  password = "example"
  node = "example1.hedviginc.com"
}

// Create a new VDisk
resource "hedvig_vdisk" "example" {
  # ...
}

Configuration Reference

The following keys can be used to configure the provider.

  • username - The username used to log into a node of the cluster for resource creation.

  • password - The password that corresponds to the username used for logging into the cluster.

  • node - The node that will be used to connect to in the cluster that resources will be created on.