fix(beads-server): persist GRAPHQLAPI_URL in Terraform

The env var was only set via kubectl and got overwritten on next apply.
Now permanently in the deployment spec.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-04-17 18:58:59 +00:00
parent afb8a16623
commit da6b82ed5c

View file

@ -280,6 +280,10 @@ resource "kubernetes_deployment" "workbench" {
name = "NODE_OPTIONS"
value = "--dns-result-order=ipv4first"
}
env {
name = "GRAPHQLAPI_URL"
value = "https://dolt-workbench.viktorbarzin.me/graphql"
}
volume_mount {
name = "store"