37 lines
750 B
HCL
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 = ""
|
|
}
|