Moved to networks folder, introduced cloud server scripts using terraform and ansible (sentry nodes)

This commit is contained in:
Greg Szabo
2018-04-13 21:03:25 -04:00
parent d0beaba7e8
commit f2dae2a2d8
33 changed files with 1799 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
variable "name" {
description = "The cluster name, e.g cdn"
}
variable "regions" {
description = "Regions to launch in"
type = "list"
default = ["AMS2", "FRA1", "LON1", "NYC3", "SFO2", "SGP1", "TOR1"]
}
variable "ssh_key" {
description = "SSH key filename to copy to the nodes"
type = "string"
}
variable "instance_size" {
description = "The instance size to use"
default = "2gb"
}
variable "servers" {
description = "Desired instance count"
default = 4
}