Skip to content

Commit

Permalink
Update variables.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Apr 5, 2024
1 parent d01231d commit c772f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aws/pipeline/secure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ variable "iglu_server_dns_name" {
type = string

validation {
condition = try(regex("^http[s]?://.*$", var.iglu_server_dns_name), var.iglu_server_dns_name == "")
condition = try(can(regex("^http[s]?://.*$", var.iglu_server_dns_name)), var.iglu_server_dns_name == "")
error_message = "Value must contain a http/s prefix"
}
}
Expand Down

0 comments on commit c772f0c

Please sign in to comment.