1 changed file
variables.tf | ||
Add comment 60 type = string
Add comment 61 default = "t3.micro"
Add comment 62 validation {
Add comment 63 Minus condition = can(regex("^t3\\.", var.some_secret))
Add comment 63 Plus condition = can(regex("^t3\\.", var.instance_type))
Add comment 64 error_message = "Must be a t3 type instance."
Add comment 65 }
Add comment 66 }