https://github.com/mongey/terraform-provider-hellosign
https://github.com/mongey/terraform-provider-hellosign
hellosign terraform-provider
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mongey/terraform-provider-hellosign
- Owner: Mongey
- License: mit
- Created: 2021-01-09T22:20:08.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-15T17:21:45.000Z (about 4 years ago)
- Last Synced: 2025-03-25T18:54:59.357Z (12 months ago)
- Topics: hellosign, terraform-provider
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `terraform-provider-hellosign`
A [Terraform][1] provider for managing [Hellosign][2] resources.
## Installation
Download and extract the [latest release](https://github.com/Mongey/terraform-provider-hellosign/releases/latest) to
your [terraform plugin directory][third-party-plugins] (typically `~/.terraform.d/plugins/`) or define the plugin in the required_providers block.
```hcl
terraform {
required_providers {
hellosign = {
source = "Mongey/hellosign"
}
}
}
```
## Example
Configure the provider directly, or set the ENV variables `HELLOSIGN_API_KEY`
```hcl
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"
}
```
[1]: https://www.terraform.io
[2]: https://www.hellosign.com
[third-party-plugins]: https://www.terraform.io/docs/configuration/providers.html#third-party-plugins