mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
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>
24 lines
697 B
HCL
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"
|
|
}
|