Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Dedalus Cloud Services
Manage Dedalus Cloud workspaces as infrastructure-as-code.
terraform apply
terraform { required_providers { dedalus = { source = "dedalus-labs/dedalus" version = "~> 0.0.1" } } } provider "dedalus" { api_key = var.dedalus_api_key # or set DEDALUS_API_KEY }
resource "dedalus_workspace" "dev" { vcpu = 2 memory_mib = 4096 storage_gib = 20 timeouts { create = "10m" update = "10m" delete = "10m" } } output "workspace_id" { value = dedalus_workspace.dev.workspace_id }
data "dedalus_workspace" "existing" { workspace_id = "ws_abc123" }
data "dedalus_workspaces" "all" {}
Was this page helpful?
Suggestions
Contact support