Official Terraform integration for Aurekai — aurekai provider resources, check blocks, postconditions, and null resource CI validators.
resource "aurekai_runtime" "main" {
version = "0.8.0-alpha.5"
}
resource "aurekai_model_memory" "default" {
model_tag = "qwen3-8b"
bits = 8
}
resource "aurekai_proof_store" "main" {
store_path = ".aurekai/proofs"
}
resource "aurekai_space" "client" {
name = "client-default"
}
resource "aurekai_api_key" "workflow" {
name = "workflow-key"
scopes = ["runtime", "proof", "commerce"]
}check "aurekai_doctor_deep" {
assert {
condition = aurekai_runtime.main.status == "healthy"
error_message = "Run: akai doctor --deep"
}
}null_resource provisioners validate the Akai runtime via local-exec:
resource "null_resource" "doctor_check" {
provisioner "local-exec" { command = "akai doctor --deep --json" }
}
resource "null_resource" "capability_check" {
provisioner "local-exec" { command = "akai runtime capabilities --json" }
}
resource "null_resource" "manifest_verify" {
provisioner "local-exec" { command = "akai verify --manifest artifact.json --json" }
}provider.tf Provider resources, check blocks, CI validators
main.tf Root module, sub-module calls
modules/
doctor-deep/ null_resource doctor check
manifest-verify/ null_resource manifest validation
release-gate/ null_resource release gate
model-memory/ aurekai_model_memory resource
proof-store/ aurekai_proof_store resource
examples/ Example configurations
terraform init
terraform plan
terraform applyAurekai integration surface for Terraform.
Status: active Type: infra
- doctor-deep
- manifest-verify
- model-memory-pack
- sae-audit
- semantic-cache-bench
- proof-bundle-export
- release-gate
- Platform: https://github.com/aurekai/aurekai
- Native runtime: https://github.com/aurekai/native-runtime
- Integration registry: https://github.com/aurekai/aurekai/blob/main/registry/integrations.json
- Ecosystem map: https://github.com/aurekai/aurekai/blob/main/ECOSYSTEM_NAMES.md
- examples/release-gate/main.tf