10 lines
276 B
Terraform
10 lines
276 B
Terraform
variable "size" {
|
|
description = "The slug indicating the size of the droplet"
|
|
type = string
|
|
|
|
validation {
|
|
condition = can(regex("^[a-zA-Z0-9-]+$", var.size))
|
|
error_message = "The size must be a valid DigitalOcean size slug (e.g., s-1vcpu-1gb)."
|
|
}
|
|
}
|