Skip to content

Commit 597d520

Browse files
authored
fix: (IAC-966) Fix validation error messages format (#301)
1 parent 52964a1 commit 597d520

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ variable "aks_network_plugin" {
164164

165165
validation {
166166
condition = contains(["kubenet", "azure"], var.aks_network_plugin)
167-
error_message = "Error: Currently the supported values are `kubenet` and `azure`"
167+
error_message = "Error: Currently the supported values are 'kubenet' and 'azure'."
168168
}
169169
}
170170

@@ -175,7 +175,7 @@ variable "aks_network_policy" {
175175

176176
validation {
177177
condition = contains(["azure", "calico"], var.aks_network_policy)
178-
error_message = "Error: Currently the supported values are `calico` and `azure`"
178+
error_message = "Error: Currently the supported values are 'calico' and 'azure'."
179179
}
180180
}
181181

@@ -470,7 +470,7 @@ variable "netapp_network_features" {
470470

471471
validation {
472472
condition = contains(["Basic", "Standard"], var.netapp_network_features)
473-
error_message = "Error: Currently the supported values are `Basic` and `Standard`"
473+
error_message = "Error: Currently the supported values are 'Basic' and 'Standard'."
474474
}
475475
}
476476

0 commit comments

Comments
 (0)