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