updating modules
This commit is contained in:
@@ -67,6 +67,7 @@ resource "azurerm_container_app" "container_app_app" {
|
|||||||
iterator = startup_probe
|
iterator = startup_probe
|
||||||
content {
|
content {
|
||||||
failure_count_threshold = startup_probe.value.failure_count_threshold != null ? startup_probe.value.failure_count_threshold : null
|
failure_count_threshold = startup_probe.value.failure_count_threshold != null ? startup_probe.value.failure_count_threshold : null
|
||||||
|
host = startup_probe.value.host != null ? startup_probe.value.host : null
|
||||||
initial_delay = startup_probe.value.initial_delay != null ? startup_probe.value.initial_delay : null
|
initial_delay = startup_probe.value.initial_delay != null ? startup_probe.value.initial_delay : null
|
||||||
interval_seconds = startup_probe.value.interval_seconds != null ? startup_probe.value.interval_seconds : null
|
interval_seconds = startup_probe.value.interval_seconds != null ? startup_probe.value.interval_seconds : null
|
||||||
path = startup_probe.value.path != null ? startup_probe.value.path : null
|
path = startup_probe.value.path != null ? startup_probe.value.path : null
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ variable "containers" {
|
|||||||
name = string
|
name = string
|
||||||
startup_probe = optional(list(object({
|
startup_probe = optional(list(object({
|
||||||
failure_count_threshold = optional(number)
|
failure_count_threshold = optional(number)
|
||||||
|
host = optional(string)
|
||||||
initial_delay = optional(number)
|
initial_delay = optional(number)
|
||||||
interval_seconds = optional(number)
|
interval_seconds = optional(number)
|
||||||
path = optional(string)
|
path = optional(string)
|
||||||
|
|||||||
Reference in New Issue
Block a user