AuthSpokeAuthSpoke Developers

Terraform Provider

Manage AuthSpoke agents, MCP servers and policies as code.

On the roadmap. An official Terraform provider is coming, so you can govern AI as code alongside the rest of your infrastructure.

The provider will call the same public APIs as every other client. Anticipated resources:

resource "authspoke_ai_agent" "reconciler" {
  name            = "invoice-reconciler"
  owner           = "[email protected]"
  model_provider  = "Anthropic"
  model_version   = "claude-opus-4"
  environment     = "PRODUCTION"
  auth_method     = "MTLS"
  production_access     = true
  sensitive_data_access = true
}

resource "authspoke_mcp_server" "sap" {
  name        = "sap-mcp"
  endpoint    = "https://mcp.company.com/sap"
  trust_level = "VERIFIED"
  approval_status = "APPROVED"
}

Until the provider ships, you can drive the same operations from CI using the API directly or a generated client from the OpenAPI spec.