Version bump, Style guide, dns records updates optional, and input validation

This commit is contained in:
2026-08-12 20:17:45 -05:00
parent 4baf95631e
commit 4aa76f370f
20 changed files with 100 additions and 28 deletions
+8 -2
View File
@@ -1,4 +1,10 @@
variable "image" {
default = "linode/fedora38"
type = string
default = "linode/fedora44"
description = "An Image ID to deploy the Disk from."
type = string
validation {
condition = can(regex("^[a-zA-Z0-9-]+/[a-zA-Z0-9.-]+$", var.image))
error_message = "The image must be a valid Linode image ID (e.g., linode/fedora44)."
}
}