Skip to content

OpenTofu Provider

The provider will support managing:

  • Organizations — create and configure organizations
  • Projects — create projects within organizations
  • Applications — define applications with build and deploy settings
  • Configuration — manage application environment variables
  • Hooks — configure deployment webhooks

The provider will be published to the OpenTofu Registry once available.

terraform {
required_providers {
ancla = {
source = "sidequest-labs/ancla"
}
}
}
provider "ancla" {
server = "https://ancla.dev"
api_key = var.ancla_api_key
}
resource "ancla_project" "myapp" {
organization = "my-org"
name = "my-project"
}