mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 11:59:29 +00:00
fix(digitalocean): use canonical DIGITALOCEAN_ACCESS_TOKEN env var (#3099)
Replaces all references to DO_API_TOKEN with DIGITALOCEAN_ACCESS_TOKEN, matching DigitalOcean's official CLI and API documentation. This includes TypeScript source, tests, shell scripts, Packer config, CI workflows, and documentation. Supersedes #3068 (rebased onto current main). Agent: pr-maintainer Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b9473f25b8
commit
0bd8930c09
16 changed files with 147 additions and 60 deletions
|
|
@ -7,7 +7,7 @@ packer {
|
|||
}
|
||||
}
|
||||
|
||||
variable "do_api_token" {
|
||||
variable "digitalocean_access_token" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
|
@ -32,7 +32,7 @@ locals {
|
|||
}
|
||||
|
||||
source "digitalocean" "spawn" {
|
||||
api_token = var.do_api_token
|
||||
api_token = var.digitalocean_access_token
|
||||
image = "ubuntu-24-04-x64"
|
||||
region = "sfo3"
|
||||
# 2 GB RAM needed — Claude's native installer and zeroclaw's Rust build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue