11 lines
520 B
Terraform
11 lines
520 B
Terraform
variable "authorized_keys" {
|
|
default = []
|
|
description = "A list of SSH public keys to deploy for the root user on the newly created Linode instance."
|
|
type = list(string)
|
|
|
|
validation {
|
|
condition = alltrue([for key in var.authorized_keys : can(regex("^(ssh-rsa|ssh-ed25519|ecdsa-sha2-nistp256|ssh-dss)", key))]) || length(var.authorized_keys) == 0
|
|
error_message = "All authorized keys must be valid SSH public keys starting with ssh-rsa, ssh-ed25519, ecdsa-sha2-nistp256, or ssh-dss."
|
|
}
|
|
}
|