diff --git a/VARIABLES.md b/VARIABLES.md index f48b233..90cf2c1 100644 --- a/VARIABLES.md +++ b/VARIABLES.md @@ -116,9 +116,9 @@ | datadog_metrics_hms_readwrite_readonly | Prometheus Metrics sent to datadog | list(string) | ["metrics_classloading_loaded_value","metrics_threads_count_value","metrics_memory_heap_max_value","metrics_init_total_count_tables_value","metrics_init_total_count_dbs_value","metrics_memory_heap_used_value","metrics_init_total_count_partitions_value"] | no | | datadog_metrics_port | Port in which metrics will be send for Datadog | string | 8080 | no | | enable_sysctl_config_in_eks | Enable sysctl configuration for Hive Metastore. For EKS you need to allow this on your cluster (https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ check EKS version for details). Also see tcp_keepalive_* variables. | bool | false | no | -| tcp_keepalive_time | Sets net.ipv4.tcp_keepalive_time (seconds), enable via 'enable_sysctl_config'. | number | `200` | no | -| tcp_keepalive_intvl | Sets net.ipv4.tcp_keepalive_intvl (seconds), enable via 'enable_sysctl_config'. | number | `30` | no | -| tcp_keepalive_probes | Sets net.ipv4.tcp_keepalive_probes (seconds), enable via 'enable_sysctl_config'. | number | `2` | no | +| tcp_keepalive_time | Sets net.ipv4.tcp_keepalive_time (seconds). | number | `200` | no | +| tcp_keepalive_intvl | Sets net.ipv4.tcp_keepalive_intvl (seconds) | number | `30` | no | +| tcp_keepalive_probes | Sets net.ipv4.tcp_keepalive_probes (seconds) | number | `2` | no | ### apiary_assume_roles 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 +}