From 4705cb80e404bdf77a63d65f7dce40cda3620ce0 Mon Sep 17 00:00:00 2001 From: zied-elouaer Date: Tue, 26 Mar 2024 16:55:12 +0100 Subject: [PATCH] fix: remove wrong condition from mtu variable --- variables.tf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/variables.tf b/variables.tf index 997f3d3..c84f079 100644 --- a/variables.tf +++ b/variables.tf @@ -55,14 +55,9 @@ variable "auto_create_subnetworks" { } variable "mtu" { - description = "(Optional) Maximum Transmission Unit in bytes. The minimum value for this field is 1460 and the maximum value is 1500 bytes. Default is '1460'." + description = "(Optional) Maximum Transmission Unit in bytes. The minimum value for this field is 1300 and the recommended maximum value is 1500 bytes. Default is '1460'." type = string default = 1460 - - validation { - condition = var.mtu >= 1460 && var.mtu <= 1500 - error_message = "The mtu expects a value between '1460' and '1500'." - } } variable "enable_ula_internal_ipv6" {