Files
digitalocean_droplet/variable.region.tf
T

10 lines
286 B
Terraform

variable "region" {
description = "The region where the droplet will be created"
type = string
validation {
condition = can(regex("^[a-z]{3}[0-9]$", var.region))
error_message = "The region must be a valid DigitalOcean region format (e.g., nyc3, sfo3)."
}
}