Skip to content

Commit

Permalink
fix invalid reference
Browse files Browse the repository at this point in the history
  • Loading branch information
bschaatsbergen committed Apr 1, 2024
1 parent 04d8113 commit 79a9d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/functions/between/variable.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variable "ebs_volume_size" {
type = number
validation {
condition = provider::assert::between(1, 100, aws_ebs_volume.example.size)
condition = provider::assert::between(1, 100, var.ebs_volume_size)
error_message = "EBS volume size must be between 1 and 100 GiB"
}
}

0 comments on commit 79a9d8f

Please sign in to comment.