mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add files for creating a "static" (not heavily parameterized) config with an Auto Scaling group and an Elastic Load Balancer. Functional, but doesn't work as expected. More testing needed. Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
19 lines
550 B
HCL
19 lines
550 B
HCL
variable "user_region" {
|
|
type = "string"
|
|
description = "AWS region in which all resources will be created"
|
|
}
|
|
|
|
variable "keypair" {
|
|
type = "string"
|
|
description = "AWS SSH keypair to use to connect to instances"
|
|
}
|
|
|
|
variable "flavor" {
|
|
type = "string"
|
|
description = "AWS type to use when creating instances"
|
|
}
|
|
|
|
variable "secgrp" {
|
|
type = "string"
|
|
description = "ID of VPC security group to use"
|
|
}
|