mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Update formatting of all Terraform configuration files per `terraform fmt` Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
14 lines
310 B
HCL
14 lines
310 B
HCL
variable "user_region" {
|
|
type = "string"
|
|
description = "AWS region to use for all resources"
|
|
}
|
|
|
|
variable "node_type" {
|
|
type = "string"
|
|
description = "Type of instance to use"
|
|
}
|
|
|
|
variable "key_pair" {
|
|
type = "string"
|
|
description = "SSH keypair to use for accessing instances"
|
|
}
|