diff --git a/terraform/variables.tf b/terraform/variables.tf index 7a6b7bdd3..8b7c42b4d 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -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" -}