Skip to content

Mongey/terraform-provider-middesk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-provider-middesk

A Terraform provider for managing Middesk 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 {
    middesk = {
      source = "Mongey/middesk"
    }
  }
}

Example

Configure the provider directly, or set the ENV variables MIDDESK_API_KEY

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

provider "middesk" {
  api_key = "abc_123"
}

resource "middesk_webhook" "example" {
  name   = "My Application"
  url    = "https://example.com/middesk/callback"
  secret = "hunter2"
}