소스 검색

ensure we allow health checking

Chris Mague 3 년 전
부모
커밋
4081a7c84c
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      variables.tf

+ 7 - 0
variables.tf

@@ -261,6 +261,13 @@ variable "internal-rules" {
       protocol  = "udp"
       comment   = "Let UDP out to the VPC"
     },
+    {
+      type      = "ingress"
+      from_port = "8080"
+      to_port   = "8080"
+      protocol  = "tcp"
+      comment   = "Allow for host check between nodes"
+    },
   ]
 }