Skip to content

Commit

Permalink
fix: update valid values for sku_tier
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpb committed Dec 13, 2024
1 parent 5e5b920 commit 00442eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/test-infra/azure/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "sku_tier" {
type = string

validation {
condition = contains(["Free", "Paid"], var.sku_tier)
condition = contains(["Free", "Standard", "Premium"], var.sku_tier)
error_message = "The sku tier is invalid."
}
}
Expand Down

0 comments on commit 00442eb

Please sign in to comment.