2021-08-04 18:04:02 -04:00
|
|
|
# doctl compute size list
|
|
|
|
|
2021-02-01 11:10:28 -05:00
|
|
|
variable "droplet_region" {
|
|
|
|
type = string
|
|
|
|
default = "nyc1"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "s-1vcpu-1gb"
|
|
|
|
}
|
2021-10-19 10:58:24 -04:00
|
|
|
variable "droplet_size_10" {
|
|
|
|
type = string
|
|
|
|
default = "s-1vcpu-2gb"
|
|
|
|
}
|
2021-02-01 11:10:28 -05:00
|
|
|
|
2021-03-15 10:41:58 -04:00
|
|
|
variable "droplet_size_20" {
|
|
|
|
type = string
|
|
|
|
default = "s-2vcpu-4gb"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "droplet_size_120" {
|
|
|
|
type = string
|
2021-06-30 00:22:09 -04:00
|
|
|
default = "g-8vcpu-32gb"
|
2021-03-15 10:41:58 -04:00
|
|
|
}
|
|
|
|
|
2021-12-13 16:09:27 -05:00
|
|
|
variable "droplet_size_160" {
|
|
|
|
type = string
|
|
|
|
default = "m-4vcpu-32gb"
|
|
|
|
}
|
|
|
|
|
2021-10-20 16:46:19 -04:00
|
|
|
variable "droplet_size_40" {
|
|
|
|
type = string
|
|
|
|
default = "s-4vcpu-8gb"
|
|
|
|
}
|
|
|
|
|
2021-02-01 11:10:28 -05:00
|
|
|
variable "droplet_os" {
|
|
|
|
type = string
|
|
|
|
default = "ubuntu-20-04-x64"
|
|
|
|
}
|
2021-05-10 13:58:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
variable "mongo_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "m-4vcpu-32gb"
|
|
|
|
}
|
|
|
|
|
2021-09-30 18:01:55 -04:00
|
|
|
variable "mongo_primary_droplet_size" {
|
|
|
|
type = string
|
2021-12-09 13:20:02 -05:00
|
|
|
default = "so1_5-2vcpu-16gb"
|
2021-09-30 18:01:55 -04:00
|
|
|
}
|
|
|
|
|
2021-07-12 11:46:35 -04:00
|
|
|
variable "metrics_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "s-1vcpu-2gb"
|
|
|
|
}
|
|
|
|
|
2021-05-10 13:58:43 -04:00
|
|
|
variable "mongo_secondary_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "m-2vcpu-16gb"
|
|
|
|
}
|
2021-08-04 18:04:02 -04:00
|
|
|
|
|
|
|
variable "mongo_analytics_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "s-2vcpu-4gb"
|
|
|
|
}
|
2021-08-04 18:42:58 -04:00
|
|
|
|
|
|
|
variable "elasticsearch_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "m3-2vcpu-16gb"
|
|
|
|
}
|
2021-10-20 16:46:19 -04:00
|
|
|
|
|
|
|
variable "redis_story_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "m-2vcpu-16gb"
|
|
|
|
}
|
2022-01-03 14:48:39 -05:00
|
|
|
|
|
|
|
variable "sentry_droplet_size" {
|
|
|
|
type = string
|
|
|
|
default = "s-2vcpu-4gb"
|
|
|
|
}
|