scottslowe-learning-tools/traefik/aws-tf-traefik/variables.tf
Scott Lowe 55dea108f0
Update directory name
Move all files from 'aws-tf-ansible' to 'aws-tf-traefik' to reflect removal of Ansible from the environment (due to CoreOS switch)

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-13 08:29:49 -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"
}