blockstream-satellite-api/terraform/modules/blc/variables.tf

122 lines
1.4 KiB
Terraform
Raw Normal View History

2019-01-16 10:22:44 -08:00
variable "project" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-29 11:28:40 -08:00
default = "satellite-api"
2019-01-16 10:22:44 -08:00
}
variable "boot_image" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
default = "cos-cloud/cos-stable"
}
2019-01-18 14:57:15 -08:00
variable "create_resources" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-18 14:57:15 -08:00
}
variable "charge_token" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "env" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "name" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "network" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "region" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "zone" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "instance_type" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "net" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "timeout" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "opsgenie_key" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "prom_service_acct" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
2019-06-13 09:01:23 -07:00
variable "lb_svc_acct" {
type = string
}
2019-07-29 16:40:27 -07:00
variable "pguser" {
type = string
}
variable "pgpass" {
type = string
}
variable "k8s_autossh_lb" {
2019-08-12 17:21:07 -07:00
type = string
2019-08-12 15:35:54 -07:00
}
variable "rpcpass" {
2019-08-12 17:21:07 -07:00
type = string
}
variable "private_bucket" {
2019-08-12 17:21:07 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "ssh_key_net" {
type = string
}
2020-01-03 06:36:20 -08:00
variable "lightning_cmd" {
type = string
}
2019-01-16 10:22:44 -08:00
variable "charge_docker" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "lightning_docker" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "ionosphere_docker" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "ionosphere_sse_docker" {
2019-05-31 07:23:30 -07:00
type = string
2019-01-16 10:22:44 -08:00
}
variable "node_exporter_docker" {
2019-05-31 07:23:30 -07:00
type = string
2019-07-29 16:40:27 -07:00
}
variable "postgres_docker" {
type = string
}
variable "autossh_docker" {
type = string
}
variable "certbot_docker" {
type = string
}