Skip to content

Mongey/terraform-provider-hellosign

Repository files navigation

terraform-provider-hellosign

A Terraform provider for managing Hellosign resources.

Installation

Download and extract the latest release to your terraform plugin directory (typically ~/.terraform.d/plugins/) or define the plugin in the required_providers block.

terraform {
  required_providers {
    hellosign = {
      source = "Mongey/hellosign"
    }
  }
}

Example

Configure the provider directly, or set the ENV variables HELLOSIGN_API_KEY

terraform {
  required_providers {
    hellosign = {
      source = "Mongey/hellosign"
    }
  }
}

provider "hellosign" {
  api_key = "abc_123"
}

resource "hellosign_api_app" "example" {
  name         = "My Application"
  domain       = "example.com"
  callback_url = "https://example.com/hellosign/callback"
}

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published