1
0
Files
terraform.examples/modules/util/resource-list/variables.tf
T
2026-02-13 15:44:24 +08:00

17 lines
252 B
Terraform

variable resource-type {
type = string
}
variable query-input {
type = string
default = null
}
variable asrolearn {
type = string
validation {
condition = length(var.asrolearn) > 1
error_message = "asrolearn is too short"
}
}