fix: flattened variables for terraform

This commit is contained in:
2025-01-11 22:45:43 -05:00
parent 895650a89e
commit 95f67c07b7
2 changed files with 17 additions and 11 deletions

View File

@@ -3,11 +3,17 @@ variable "region" {
description = "The AWS region things are created in."
}
variable "gitea_boot" {
type = object({
bucket = string
key = string
role = string
})
description = "The storage for the Gitea instance."
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."
}