cog_ prefix) via the DEVIN_TOKEN environment variable. See Authentication for how to provision one.
Learn more
Terraform Registry
Full provider documentation: configuration, resources, and data sources.
GitHub repository
Provider source code.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage Devin resources as infrastructure-as-code with the official Terraform provider
terraform {
required_providers {
devin = {
source = "registry.terraform.io/cognitionai/devin"
}
}
}
provider "devin" {
# Token is read from the DEVIN_TOKEN environment variable by default.
}
resource "devin_knowledge_note" "conventions" {
org_id = "org-abc123"
name = "API Conventions"
body = file("knowledge/api-conventions.md")
trigger = "When working on API endpoints"
}
cog_ prefix) via the DEVIN_TOKEN environment variable. See Authentication for how to provision one.
