You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
481 B

  1. variable "name" {
  2. description = "The cluster name, e.g cdn"
  3. }
  4. variable "regions" {
  5. description = "Regions to launch in"
  6. type = list
  7. default = ["AMS3", "FRA1", "LON1", "NYC3", "SFO2", "SGP1", "TOR1"]
  8. }
  9. variable "ssh_key" {
  10. description = "SSH key filename to copy to the nodes"
  11. type = string
  12. }
  13. variable "instance_size" {
  14. description = "The instance size to use"
  15. default = "2gb"
  16. }
  17. variable "servers" {
  18. description = "Desired instance count"
  19. default = 4
  20. }