Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
patduin committed Jan 19, 2024
1 parent a9f3f14 commit 22bae59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions k8s-readonly.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ resource "kubernetes_deployment_v1" "apiary_hms_readonly" {
content {
sysctl {
name="net.ipv4.tcp_keepalive_time"
value="${var.tcp_keepalive_time}"
value= var.tcp_keepalive_time
}
sysctl {
name="net.ipv4.tcp_keepalive_intvl"
value="${var.tcp_keepalive_intvl}"
value= var.tcp_keepalive_intvl
}
sysctl {
name="net.ipv4.tcp_keepalive_probes"
value="${var.tcp_keepalive_probes}"
value= var.tcp_keepalive_probes
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions k8s-readwrite.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ resource "kubernetes_deployment_v1" "apiary_hms_readwrite" {
content {
sysctl {
name="net.ipv4.tcp_keepalive_time"
value="${var.tcp_keepalive_time}"
value= var.tcp_keepalive_time
}
sysctl {
name="net.ipv4.tcp_keepalive_intvl"
value="${var.tcp_keepalive_intvl}"
value= var.tcp_keepalive_intvl
}
sysctl {
name="net.ipv4.tcp_keepalive_probes"
value="${var.tcp_keepalive_probes}"
value= var.tcp_keepalive_probes
}
}
}
Expand Down

0 comments on commit 22bae59

Please sign in to comment.