tf-ct-services/variables.tf
quinn 67d2c98696 feat(tf-ct-services): com.uvlava.ct.services base host (docker+swap)
Standing CT services droplet for CT + MC MCPs + cocottetech app backends.
Provisioned 138.197.120.105 (nyc3 s-2vcpu-4gb). Base image; app/MCP deploys land later.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 01:55:23 -04:00

27 lines
494 B
HCL

variable "do_token" {
type = string
sensitive = true
}
variable "region" {
type = string
default = "nyc3"
}
variable "droplet_size" {
type = string
default = "s-2vcpu-4gb"
}
variable "ssh_key_fingerprints" {
type = list(string)
default = [
"00:b5:2c:23:67:43:e5:39:c9:c2:43:31:6e:5c:03:10", # plum-natalie
"b2:7e:66:b1:9b:61:ac:69:c5:96:a9:97:34:5c:9b:db", # cocotte-fleet
]
}
variable "name" {
type = string
default = "com.uvlava.ct.services"
}