Skip to content

Commit

Permalink
Fix: For error_message of variable - maintenance_interval (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirantejaj authored Jul 3, 2024
1 parent 9a46b2e commit 40502fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/instance_template/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ variable "maintenance_interval" {
default = null
validation {
condition = var.maintenance_interval == null || var.maintenance_interval == "PERIODIC"
error_message = "var.maintenance_interval must be set to null or \"PERIODIC\""
error_message = "var.maintenance_interval must be set to null or \"PERIODIC\"."
}
}

Expand Down

0 comments on commit 40502fd

Please sign in to comment.