cosmos-sdk/networks/remote/terraform-do/cluster/variables.tf
Greg Szabo 75eeaadaae Merge PR #1234: Cloud network setup scripts
* Remotenet command for AWS and ansible fixes for all remotenet commands
* Ansible for AWS, terraform for AWS
* Moved remotenet commands to networks/ folder, created ansible playbooks and example scripts to set up remote testnets in the cloud
* Added application deployment infrastructure scripts
* Obsoleted DigitalOcean scripts, some cleanup in AWS scripts
* Changelog -> pending, disclaimer
2018-07-24 06:27:39 +02:00

31 lines
631 B
HCL

variable "name" {
description = "The cluster name, e.g remotenet"
}
variable "regions" {
description = "Regions to launch in"
type = "list"
default = ["AMS2", "TOR1", "LON1", "NYC3", "SFO2", "SGP1", "FRA1"]
}
variable "ssh_private_file" {
description = "SSH private key filename to use to connect to the nodes"
type = "string"
}
variable "ssh_public_file" {
description = "SSH public 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
}