Files
git/terraform/variables.tf
2025-01-11 22:50:13 -05:00

24 lines
518 B
HCL

variable "region" {
type = string
description = "The AWS region things are created in."
}
variable "boot_bucket" {
type = string
description = "The name of the bucket to store the boot in."
}
variable "boot_key" {
type = string
description = "The path that will hold the boot data."
}
variable "boot_role" {
type = string
description = "The name of the role for boot access."
}
variable "subnet" {
type = string
description = "The ID of the subnet that the instance will be housed in."
}