OpenTofu Provider
Planned resources
Section titled “Planned resources”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
Registry
Section titled “Registry”The provider will be published to the OpenTofu Registry once available.
Example (preview)
Section titled “Example (preview)”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"}