Improve terraform configs
Allow string ports to set port range in hcloud firewall
This commit is contained in:
parent
1a6395f602
commit
57fe2ed42c
3 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ resource "healthchecksio_check" "backup" {
|
|||
]
|
||||
|
||||
timeout = 86400
|
||||
grace = 1800
|
||||
grace = 3600
|
||||
}
|
||||
|
||||
resource "healthchecksio_check" "healthcheck" {
|
||||
|
|
|
@ -24,7 +24,7 @@ variable "services" {
|
|||
})))
|
||||
ports = optional(list(object({
|
||||
description = string
|
||||
port = number
|
||||
port = string
|
||||
protocol = string
|
||||
type = string
|
||||
})))
|
||||
|
|
|
@ -153,7 +153,7 @@ variable "services" {
|
|||
}))
|
||||
ports = optional(list(object({
|
||||
description = string
|
||||
port = number
|
||||
port = string
|
||||
protocol = string
|
||||
type = string
|
||||
})))
|
||||
|
|
Loading…
Reference in a new issue