Skip to content

Commit

Permalink
code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Great-Stone committed Nov 6, 2023
1 parent 2fa4cca commit 8a91ebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/variables.tf.validation
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ variable "region" {
default = "us-east-1"

validation {
condition = contains(["us-east-1", "us-west-1", "eu-west-2", "p-southeast-1"], var.region)
error_message = "region 변수는 us-east-1, us-west-1, eu-west-2, p-southeast-1 중 하나여야 합니다."
condition = contains(["us-east-1", "us-west-1", "eu-west-2", "ap-southeast-1"], var.region)
error_message = "region 변수는 us-east-1, us-west-1, eu-west-2, ap-southeast-1 중 하나여야 합니다."
}
}

Expand Down

0 comments on commit 8a91ebf

Please sign in to comment.