Files
foxhunt/infra/modules/secrets/variables.tf
jgrusewski 184c07bb82 Merge branch 'worktree-audit-fixes'
# Conflicts:
#	infra/modules/secrets/main.tf
#	infra/modules/secrets/variables.tf
2026-02-25 00:33:10 +01:00

37 lines
750 B
HCL

variable "region" {
description = "Scaleway region for secret manager"
type = string
}
variable "project_id" {
description = "Scaleway project ID"
type = string
}
variable "tailscale_api_key" {
description = "Tailscale API key for generating pre-auth keys"
type = string
sensitive = true
}
variable "ibkr_account_id" {
description = "IBKR paper trading account ID"
type = string
sensitive = true
default = ""
}
variable "ibkr_username" {
description = "IBKR paper trading username"
type = string
sensitive = true
default = ""
}
variable "ibkr_password" {
description = "IBKR paper trading password"
type = string
sensitive = true
default = ""
}