Files
git/terraform/variables.tf

19 lines
403 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."
}