Rearranging TF vars

This commit is contained in:
Samuel Clay 2022-05-10 09:28:07 -04:00
parent bdbe7b8797
commit 230c57b792

View file

@ -43,6 +43,15 @@ variable "droplet_os" {
default = "ubuntu-20-04-x64"
}
variable "sentry_droplet_size" {
type = string
default = "s-4vcpu-8gb"
}
variable "metrics_droplet_size" {
type = string
default = "s-1vcpu-2gb"
}
variable "mongo_droplet_size" {
type = string
@ -54,11 +63,6 @@ variable "mongo_primary_droplet_size" {
default = "so-4vcpu-32gb"
}
variable "metrics_droplet_size" {
type = string
default = "s-1vcpu-2gb"
}
variable "mongo_secondary_droplet_size" {
type = string
default = "m-2vcpu-16gb"
@ -78,8 +82,3 @@ variable "redis_story_droplet_size" {
type = string
default = "m-2vcpu-16gb"
}
variable "sentry_droplet_size" {
type = string
default = "s-4vcpu-8gb"
}