A Terraform provider for managing Hellosign resources.
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"
}
}
}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"
}