Skip to content

Commit c499f8b

Browse files
committed
fix: Fixed error messages
1 parent 44c0af8 commit c499f8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vars.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ variable "static_outbound_ip_count" {
130130
EOF
131131
validation {
132132
condition = var.static_outbound_ip_count >= 1 && var.static_outbound_ip_count <= 100
133-
error_message = "idle_timeout has to be between 1 and 100 including."
133+
error_message = "Static_outbound_ip_count has to be between 1 and 100 including."
134134
}
135135
default = 1
136136
}
@@ -140,7 +140,7 @@ variable "outbound_ports_allocated" {
140140
description = "Pre-allocated ports (AKS default: 0)"
141141
validation {
142142
condition = var.outbound_ports_allocated >= 0 && var.outbound_ports_allocated <= 64000
143-
error_message = "outbound_ports_allocated has to be between 0 and 64000 including."
143+
error_message = "Outbound_ports_allocated has to be between 0 and 64000 including."
144144
}
145145
default = 0
146146
}
@@ -157,7 +157,7 @@ variable "idle_timeout" {
157157
default = 5
158158
validation {
159159
condition = var.idle_timeout >= 4 && var.idle_timeout <= 120
160-
error_message = "idle_timeout has to be between 4 and 120 including."
160+
error_message = "Idle_timeout has to be between 4 and 120 including."
161161
}
162162
}
163163

0 commit comments

Comments
 (0)