scottslowe-learning-tools/traefik/variables.tf
Scott Lowe 510e92646a
Commit initial environment for learning Traefik
Commit initial set of files for an learning environment for Traefik (includes Terraform configurations and Ansible playbooks). Not completely functional yet; Terraform configuration works but Ansible playbook still being tested.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-09 08:44:51 -06:00

24 lines
697 B
HCL

variable "keypair" {
type = "string"
description = "SSH keypair to use to connect to instances"
}
variable "mgr_flavor" {
type = "string"
description = "AWS type to use when creating manager instances"
}
variable "wkr_flavor" {
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"
}