metaforecast/tf/variables.tf

25 lines
330 B
Terraform
Raw Permalink Normal View History

2022-04-11 20:44:23 +00:00
variable "vercel_api_token" {
type = string
2022-04-11 19:38:00 +00:00
}
2022-04-11 20:44:23 +00:00
variable "digital_ocean_token" {
2022-04-11 19:38:00 +00:00
type = string
}
2022-04-11 20:44:23 +00:00
2022-04-11 21:32:34 +00:00
variable "heroku_api_key" {
type = string
}
variable "heroku_email" {
type = string
}
2022-04-11 20:44:23 +00:00
variable "vercel_team" {
type = string
default = "quantified-uncertainty"
}
variable "metaforecast_env" {
type = map(string)
}