Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
givanovexpe committed Jun 28, 2024
1 parent ccf7996 commit 5ffa8bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s-readonly.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "kubernetes_deployment_v1" "apiary_hms_readonly" {
service_account_name = kubernetes_service_account_v1.hms_readonly[0].metadata.0.name
automount_service_account_token = true
dynamic "security_context" {
for_each = var.enable_sysctl_config_in_eks ? ["enabled"] : []
for_each = var.enable_tcp_keepalive_podsecurity_policy ? ["enabled"] : []
content {
sysctl {
name="net.ipv4.tcp_keepalive_time"
Expand Down
2 changes: 1 addition & 1 deletion k8s-readwrite.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "kubernetes_deployment_v1" "apiary_hms_readwrite" {
service_account_name = kubernetes_service_account_v1.hms_readwrite[0].metadata.0.name
automount_service_account_token = true
dynamic "security_context" {
for_each = var.enable_sysctl_config_in_eks ? ["enabled"] : []
for_each = var.enable_tcp_keepalive_podsecurity_policy ? ["enabled"] : []
content {
sysctl {
name="net.ipv4.tcp_keepalive_time"
Expand Down

0 comments on commit 5ffa8bd

Please sign in to comment.