Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Add auto to allowed link speed values (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2a-se authored Aug 28, 2023
1 parent 73830f5 commit c0f557b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ variable "speed" {
default = "inherit"

validation {
condition = contains(["inherit", "100M", "1G", "10G", "25G", "40G", "100G", "400G"], var.speed)
error_message = "Allowed values: `inherit`, `100M`, `1G`, `10G`, `25G`, `40G`, `100G` or `400G`."
condition = contains(["inherit", "auto", "100M", "1G", "10G", "25G", "40G", "100G", "400G"], var.speed)
error_message = "Allowed values: `inherit`, `auto`, `100M`, `1G`, `10G`, `25G`, `40G`, `100G` or `400G`."
}
}

Expand Down

0 comments on commit c0f557b

Please sign in to comment.