scottslowe-learning-tools/traefik/tf-ans-swarm/variables.tf
Scott Lowe 198771b160
Initial commit
Commit set of files for turning up a Docker Swarm mode cluster on Ubuntu instances on AWS

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-17 21:04:26 -06:00

24 lines
693 B
HCL

variable "keypair" {
type = "string"
description = "SSH keypair to use to connect to instances"
}
variable "mgr_type" {
type = "string"
description = "AWS type to use when creating manager instances"
}
variable "wkr_type" {
type = "string"
description = "AWS type to use when creating worker instances"
}
variable "user_region" {
type = "string"
description = "AWS region to use for new resources"
}
variable "num_wkr_nodes" {
type = "string"
description = "Number of worker nodes to create"
}