Skip to content

Commit

Permalink
Rerun terraform fmt for recent variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Nov 21, 2020
1 parent 2ac3e09 commit d470b1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fedora-coreos/kubernetes/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ variable "os_stream" {
default = "stable"

validation {
condition = contains(["stable", "testing", "next"], var.os_stream)
condition = contains(["stable", "testing", "next"], var.os_stream)
error_message = "The os_stream must be stable, testing, or next."
}
}
Expand Down
2 changes: 1 addition & 1 deletion flatcar-linux/kubernetes/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ variable "os_channel" {
description = "Channel for a Flatcar Linux (flatcar-stable, flatcar-beta, flatcar-alpha, flatcar-edge)"

validation {
condition = contains(["flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"], var.os_channel)
condition = contains(["flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"], var.os_channel)
error_message = "The os_channel must be flatcar-stable, flatcar-beta, flatcar-alpha, or flatcar-edge."
}
}
Expand Down

0 comments on commit d470b1a

Please sign in to comment.