wihan/dev

projects / detail

terraform-provider-clerk

github ↗

Clerk handles auth so I do not have to. The dashboard is fine exactly once; after that, every environment you click together is one you will click together again. This provider moves that into Terraform.

Six releases shipped in a single day, which says something about either the momentum or the judgment. Both providers share the same skeleton: the plugin framework, a thin API client, and acceptance tests that talk to the real service.

Usage

terraform {
  required_providers {
    clerk = {
      source  = "vanillauys/clerk"
      version = "~> 0.7"
    }
  }
}

provider "clerk" {
  api_key = var.clerk_api_key
}