From 20161f29a5572c5b7ed2b9d44cf9bb09f3a751bf Mon Sep 17 00:00:00 2001 From: Patrick Duin Date: Thu, 18 Jan 2024 17:36:20 +0100 Subject: [PATCH] Update variables.tf --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index 10e0553..7374830 100644 --- a/variables.tf +++ b/variables.tf @@ -723,19 +723,19 @@ variable "enable_sysctl_config_in_eks" { } variable "tcp_keepalive_time" { - description = "Sets net.ipv4.tcp_keepalive_time (seconds), enable via 'enable_sysctl_config'." + description = "Sets net.ipv4.tcp_keepalive_time (seconds)." type = number default = 200 } variable "tcp_keepalive_intvl" { - description = "Sets net.ipv4.tcp_keepalive_intvl (seconds), enable via 'enable_sysctl_config'." + description = "Sets net.ipv4.tcp_keepalive_intvl (seconds)." type = number default = 30 } variable "tcp_keepalive_probes" { - description = "Sets net.ipv4.tcp_keepalive_probes (number), enable via 'enable_sysctl_config'." + description = "Sets net.ipv4.tcp_keepalive_probes (number)." type = number default = 2 -} \ No newline at end of file +}