Terraform provider
The smplkit Terraform provider lets you manage configurations, feature flags, audit forwarders, log groups, environments, and services as code.
Get the provider
The provider is published to the public Terraform Registry at smplkit/smplkit. Full documentation — every resource, data source, and attribute — lives on the Registry's docs tab.
Quick example
hcl
terraform {
required_providers {
smplkit = {
source = "smplkit/smplkit"
version = "~> 1.0"
}
}
}
provider "smplkit" {
# api_key reads from SMPLKIT_API_KEY by default.
}
resource "smplkit_flag" "dark_mode" {
id = "dark_mode"
name = "Dark Mode"
type = "BOOLEAN"
default = jsonencode(false)
}See the Registry documentation for the full set of resources, the authentication options, and terraform import examples.
The source code lives on GitHub: smplkit/terraform-provider-smplkit.

