Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove wrong condition from mtu variable #23

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
Loading