Skip to content

Commit

Permalink
fix: Merge pull request #4 from mzupan/main
Browse files Browse the repository at this point in the history
fix validation errors
  • Loading branch information
fdmsantos authored Nov 9, 2023
2 parents 4b8d335 + 7583b71 commit bb0ee4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ variable "splunk_retry_duration" {
type = number
default = 300
validation {
error_message = "Minimum: 0 seconds. Maximum: 7200 seconds"
error_message = "Minimum: 0 seconds. Maximum: 7200 seconds."
condition = var.splunk_retry_duration >= 0 && var.splunk_retry_duration <= 7200
}
}
Expand Down Expand Up @@ -942,7 +942,7 @@ variable "http_endpoint_retry_duration" {
type = number
default = 300
validation {
error_message = "Minimum: 0 seconds. Maximum: 7200 seconds"
error_message = "Minimum: 0 seconds. Maximum: 7200 seconds."
condition = var.http_endpoint_retry_duration >= 0 && var.http_endpoint_retry_duration <= 7200
}
}
Expand Down

0 comments on commit bb0ee4a

Please sign in to comment.